...
|
...
|
@@ -217,11 +217,13 @@ var Bll = { |
|
|
},
|
|
|
|
|
|
renderDecoratorPCTemplate: function() {
|
|
|
$('.main-decorator').html(common.util.__template2($('#pc-template').html(), {data: defaultPCModuleData}));
|
|
|
// $('.main-decorator').html(common.util.__template2($('#pc-template').html(), {data: defaultPCModuleData}));
|
|
|
$('.decorator-right').html(common.util.__template2($('#pc-template').html(), {data: defaultPCModuleData}));
|
|
|
},
|
|
|
|
|
|
renderDecoratorAppTemplate: function() {
|
|
|
$('.main-decorator').html(common.util.__template2($('#app-template').html(), {data: Bll.moduleDataList}));
|
|
|
// $('.main-decorator').html(common.util.__template2($('#app-template').html(), {data: Bll.moduleDataList}));
|
|
|
$('.decorator-right').html(common.util.__template2($('#app-template').html(), {data: Bll.moduleDataList}));
|
|
|
},
|
|
|
|
|
|
// 模块增加编辑图标
|
...
|
...
|
@@ -545,6 +547,9 @@ var Bll = { |
|
|
Bll.moduleGrid.init(Bll.moduleGrid.__rows);
|
|
|
break;
|
|
|
};
|
|
|
|
|
|
var e = new common.edit('.editorTitle',{bucket:"yhb-img02"});
|
|
|
e.init();
|
|
|
},
|
|
|
|
|
|
// 设置当前模块与下个模块间的间隔,对于"店招"模块不涉及,没有间距
|
...
|
...
|
@@ -555,9 +560,6 @@ var Bll = { |
|
|
}
|
|
|
|
|
|
$('.editorTitle').append(common.util.__template2($('#module-margin-template').html(), {isModuleMargin: Bll.getModuleMargin(module)}));
|
|
|
|
|
|
var e = new common.edit('.editorTitle',{bucket:"yhb-img02"});
|
|
|
e.init();
|
|
|
},
|
|
|
|
|
|
// 获取是否设置模块间间距,默认是1
|
...
|
...
|
@@ -1194,6 +1196,7 @@ var publishDecoratorTemplate = function() { |
|
|
var curTemplate = $('.selected-template').parent();
|
|
|
var templateId = $(curTemplate).data('id');
|
|
|
var isSystemTemplate = $(curTemplate).data('is-system-template');
|
|
|
var index = $(curTemplate).data('index');
|
|
|
|
|
|
if(isSystemTemplate && +isSystemTemplate == 1) {
|
|
|
common.util.__tip('系统模板无法发布,请编辑存储为备份模板后,再发布!', 'warning');
|
...
|
...
|
@@ -1205,6 +1208,10 @@ var publishDecoratorTemplate = function() { |
|
|
data: {
|
|
|
templateId: templateId
|
|
|
}
|
|
|
}, function(res) {
|
|
|
// 发布模板之后,模板状态变更,重载模板列表
|
|
|
Bll.getTemplates();
|
|
|
Bll.renderTemplateList(index);
|
|
|
});
|
|
|
};
|
|
|
|
...
|
...
|
|