|
|
var $ = require('jquery'),
|
|
|
util = require('../util');
|
|
|
common = require('../../../../common/common');
|
|
|
|
|
|
var validator = function(option) {
|
|
|
this.option = option || {};
|
...
|
...
|
@@ -33,12 +33,12 @@ validator.prototype = { |
|
|
// 校验店招模块
|
|
|
validatorShopBanner: function(moduleData) {
|
|
|
if(moduleData === undefined) {
|
|
|
util.__tip('店招模块装修数据为空,请先编辑模块信息!', 'warning');
|
|
|
common.util.__tip('店招模块装修数据为空,请先编辑模块信息!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if(! moduleData[0].pic) {
|
|
|
util.__tip('店招图片地址为空,请确认!', 'warning');
|
|
|
common.util.__tip('店招图片地址为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -48,12 +48,12 @@ validator.prototype = { |
|
|
// 校验单图模块
|
|
|
validateSingleImage: function(moduleData) {
|
|
|
if(moduleData === undefined) {
|
|
|
util.__tip('单图模块装修内容为空,请先编辑模块信息!', 'warning');
|
|
|
common.util.__tip('单图模块装修内容为空,请先编辑模块信息!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if(! moduleData[0].pic) {
|
|
|
util.__tip('一张图模块中图片地址为空,请确认!', 'warning');
|
|
|
common.util.__tip('一张图模块中图片地址为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -65,7 +65,7 @@ validator.prototype = { |
|
|
}
|
|
|
|
|
|
if(! resource) {
|
|
|
util.__tip('一张图模块中关联数据为空,请确认!', 'warning');
|
|
|
common.util.__tip('一张图模块中关联数据为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -76,7 +76,7 @@ validator.prototype = { |
|
|
|
|
|
// 校验是否是内网地址
|
|
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
|
|
util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
common.util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -86,13 +86,13 @@ validator.prototype = { |
|
|
// 校验标题模块
|
|
|
validateTitle: function(moduleData) {
|
|
|
if(moduleData === undefined) {
|
|
|
util.__tip('标题模块内容为空,请先编辑模块信息!', 'warning');
|
|
|
common.util.__tip('标题模块内容为空,请先编辑模块信息!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
var title = moduleData[0].text;
|
|
|
if(!title || title.trim().length === 0) {
|
|
|
util.__tip('标题模块的标题内容不能为空,请确认!', 'warning');
|
|
|
common.util.__tip('标题模块的标题内容不能为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -105,7 +105,7 @@ validator.prototype = { |
|
|
|
|
|
// 未填写关联内容
|
|
|
if(!resource) {
|
|
|
util.__tip('标题模块选择了关联类型,但未选择关联内容,请确认!', 'warning');
|
|
|
common.util.__tip('标题模块选择了关联类型,但未选择关联内容,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -116,7 +116,7 @@ validator.prototype = { |
|
|
|
|
|
// 校验是否是内网地址
|
|
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
|
|
util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
common.util.__tip('一张图模块中关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -127,7 +127,7 @@ validator.prototype = { |
|
|
validateMultiImage: function(moduleData, moduleName) {
|
|
|
var _self = this;
|
|
|
if(moduleData === undefined) {
|
|
|
util.__tip(moduleName + "内容为空,请先编辑模块信息!", 'warning');
|
|
|
common.util.__tip(moduleName + "内容为空,请先编辑模块信息!", 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -137,7 +137,7 @@ validator.prototype = { |
|
|
var resource = data.resource;
|
|
|
|
|
|
if(!data.pic) {
|
|
|
util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中图片地址为空,请确认!', 'warning');
|
|
|
common.util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中图片地址为空,请确认!', 'warning');
|
|
|
validateResult = false;
|
|
|
return;
|
|
|
}
|
...
|
...
|
@@ -147,7 +147,7 @@ validator.prototype = { |
|
|
}
|
|
|
|
|
|
if(!resource) {
|
|
|
util.__tip(moduleName + "中,第" + (index + 1) + "条装修内容选择了关联类型,但未选择关联内容,请确认!", 'warning');
|
|
|
common.util.__tip(moduleName + "中,第" + (index + 1) + "条装修内容选择了关联类型,但未选择关联内容,请确认!", 'warning');
|
|
|
validateResult = false;
|
|
|
return;
|
|
|
}
|
...
|
...
|
@@ -157,7 +157,7 @@ validator.prototype = { |
|
|
}
|
|
|
|
|
|
if(linkType == 2 && resource.indexOf('.yohobuy.com') == -1) {
|
|
|
util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中的关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
common.util.__tip(moduleName + '中,第' + (index + 1) + '条装修内容中的关联地址必须是包含".yohobuy.com"的内网地址,请确认!', 'warning');
|
|
|
validateResult = false;
|
|
|
return;
|
|
|
}
|
...
|
...
|
@@ -168,17 +168,17 @@ validator.prototype = { |
|
|
|
|
|
validateVideo: function(moduleData) {
|
|
|
if(moduleData == undefined) {
|
|
|
util.__tip('直播模块内容为空,请先编辑!', 'warning');
|
|
|
common.util.__tip('直播模块内容为空,请先编辑!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if(! moduleData[0].pic) {
|
|
|
util.__tip('直播模块中,直播封面图为空,请确认!', 'warning');
|
|
|
common.util.__tip('直播模块中,直播封面图为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
if(! moduleData[0].video) {
|
|
|
util.__tip('直播模块中,直播地址为空,请确认!', 'warning');
|
|
|
common.util.__tip('直播模块中,直播地址为空,请确认!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -189,13 +189,13 @@ validator.prototype = { |
|
|
validateSkn: function(skn) {
|
|
|
var _self = this;
|
|
|
if(! $.isNumeric(skn)) {
|
|
|
util.__tip('[' + skn + ']不是数字,请输入正确格式的SKN!', 'warning');
|
|
|
common.util.__tip('[' + skn + ']不是数字,请输入正确格式的SKN!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
var result = true;
|
|
|
|
|
|
util.__ajax({
|
|
|
common.util.__ajax({
|
|
|
url: '/shop/ShopsDecoratorRest/findProductBySKN',
|
|
|
data: {
|
|
|
productSkn: skn,
|
...
|
...
|
@@ -204,13 +204,13 @@ validator.prototype = { |
|
|
async: false
|
|
|
}, function(resp) {
|
|
|
if(resp.code != 200) {
|
|
|
util.__tip(resp.message, 'warning');
|
|
|
common.util.__tip(resp.message, 'warning');
|
|
|
result = false;
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
if(!resp.data) {
|
|
|
util.__tip('店铺下不包含该SKN[' + skn + '],请确保SKN已上架且有库存!', 'warning');
|
|
|
common.util.__tip('店铺下不包含该SKN[' + skn + '],请确保SKN已上架且有库存!', 'warning');
|
|
|
result = false;
|
|
|
return;
|
|
|
}
|
...
|
...
|
|