Authored by leo

Update: 调整装修公共模块位置

... ... @@ -17,9 +17,7 @@ config=require('./config'),
popImg=require('./popImg'),
sizeInfo = require('./sizeInfo'),
refreshHelper = require("./refreshHelper"),
artTemplate = require('./artTemplate'),
decoratorValidator = require('./decorator/Validator'),
grid2=require('./decorator/Grid');
artTemplate = require('./artTemplate');
require('./index');
... ... @@ -42,9 +40,7 @@ var common={
config:config,
sizeInfo:sizeInfo,
refreshHelper:refreshHelper,
artTemplate:artTemplate,
decoratorValidator:decoratorValidator,
grid2:grid2
artTemplate:artTemplate
};
module.exports=common;
\ No newline at end of file
... ...
var $ = require('jquery'),
common = require('../../../common/common');
common = require('../../../common/common'),
validator = require('./partials/Validator'),
grid = require('./partials/Grid');
// 默认系统模板
var systemTemplates =
... ... @@ -114,7 +116,7 @@ var Bll = {
Bll.addEditorIcon();
// 注册模块校验器
Bll.validator = new common.decoratorValidator({
Bll.validator = new validator({
shopId: Bll.shopId
});
},
... ... @@ -315,7 +317,7 @@ var Bll = {
switch(moduleType) {
case "ShopBanner":
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -335,7 +337,7 @@ var Bll = {
Bll.moduleGrid.init(Bll.moduleGrid.__rows);
break;
case "Title":
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -366,7 +368,7 @@ var Bll = {
$(selector).html('<div><p style="color: red; text-align: center;">自动展示店铺内的商品列表,无需编辑!</p></div>');
break;
case "SingleImage":
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -398,7 +400,7 @@ var Bll = {
Bll.moduleGrid.init(Bll.moduleGrid.__rows);
break;
case "DoubleImage":
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -433,7 +435,7 @@ var Bll = {
case "TripleImage":
$('.editorTitle').append(common.util.__template2($('#triple-image-radio-group').html(), {displayType: Bll.getTripleImageDisplayType(module), index: index}));
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -467,7 +469,7 @@ var Bll = {
// 添加一行
$('.editorTitle').append('<div><a class="btn btn-primary add-moduledata-btn" javascript=":;">添加一行</div>');
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -510,7 +512,7 @@ var Bll = {
Bll.moduleGrid.init(Bll.moduleGrid.__rows);
break;
case "Video":
Bll.moduleGrid = new common.grid2({
Bll.moduleGrid = new grid({
hash: false,
el: selector,
columns: [
... ... @@ -704,7 +706,7 @@ var Bll = {
Bll.addModuleDialog = new common.dialog(option);
var g = new common.grid2({
var g = new grid({
hash: false,
el: ".editor-dialog",
columns: [
... ...
... ... @@ -19,7 +19,7 @@ g.init('url');*/
var $ = require('jquery');
require('../util/jquery.simplePagination');
require('../../../../common/util/jquery.simplePagination');
var grid = function(options) {
var pagesizes=[10,20,30,50,100];
... ...
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;
}
... ...