Merge branch 'dev_5.2_首页翻转页面' into test5.2
Showing
1 changed file
with
8 additions
and
1 deletions
@@ -367,6 +367,8 @@ for(var i = 0; i < resources.length; i++) { | @@ -367,6 +367,8 @@ for(var i = 0; i < resources.length; i++) { | ||
367 | var scope = item.contentData.data.scope; | 367 | var scope = item.contentData.data.scope; |
368 | if(scope == '1') { | 368 | if(scope == '1') { |
369 | item.contentData.data.channel = 'boy'; | 369 | item.contentData.data.channel = 'boy'; |
370 | + } else { | ||
371 | + item.contentData.data.channel = 'general'; | ||
370 | } | 372 | } |
371 | 373 | ||
372 | item.contentData.data.content = item.contentData.data[item.contentData.data.channel]; | 374 | item.contentData.data.content = item.contentData.data[item.contentData.data.channel]; |
@@ -528,7 +530,12 @@ function convertModule(module) { | @@ -528,7 +530,12 @@ function convertModule(module) { | ||
528 | 530 | ||
529 | // "首页翻转页面"编辑时,需要根据当前频道,重新组装表格渲染内容 | 531 | // "首页翻转页面"编辑时,需要根据当前频道,重新组装表格渲染内容 |
530 | if(module.contentData.template_name == 'rollingOverSlider') { | 532 | if(module.contentData.template_name == 'rollingOverSlider') { |
531 | - module.contentData.data.channel = 'boy'; | 533 | + // module.contentData.data.channel = 'boy'; |
534 | + if(module.contentData.data.scope == '1') { | ||
535 | + module.contentData.data.channel = 'boy'; | ||
536 | + } else { | ||
537 | + module.contentData.data.channel = 'general'; | ||
538 | + } | ||
532 | module.contentData.data.content = module.contentData.data[module.contentData.data.channel]; | 539 | module.contentData.data.content = module.contentData.data[module.contentData.data.channel]; |
533 | } | 540 | } |
534 | 541 |
-
Please register or login to post a comment