Authored by leo

Merge branch 'dev_5.2_首页翻转页面' into test5.2

... ... @@ -367,6 +367,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];
... ... @@ -528,7 +530,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];
}
... ...