Authored by leo

Fixed: 修复校验逻辑引发数据保存问题

... ... @@ -359,6 +359,8 @@ for(var i = 0; i < resources.length; i++) {
var scope = item.contentData.data.scope;
if(scope == '1') {
item.contentData.data.channel = 'boy';
} else {
item.contentData.data.channel = 'general';
}
item.contentData.data.content = item.contentData.data[item.contentData.data.channel];
... ... @@ -520,7 +522,12 @@ function convertModule(module) {
// "首页翻转页面"编辑时,需要根据当前频道,重新组装表格渲染内容
if(module.contentData.template_name == 'rollingOverSlider') {
module.contentData.data.channel = 'boy';
// module.contentData.data.channel = 'boy';
if(module.contentData.data.scope == '1') {
module.contentData.data.channel = 'boy';
} else {
module.contentData.data.channel = 'general';
}
module.contentData.data.content = module.contentData.data[module.contentData.data.channel];
}
... ...