Authored by Li

Merge remote-tracking branch 'origin/test6.0' into test6.0

@@ -1072,6 +1072,9 @@ @@ -1072,6 +1072,9 @@
1072 <label>&emsp;&emsp; 1072 <label>&emsp;&emsp;
1073 是否显示<input type="checkbox" name="is_show" value="1" id="recommendContentFive-is_show" [[contentData.data.title.is_show==1?'checked':'']]> 1073 是否显示<input type="checkbox" name="is_show" value="1" id="recommendContentFive-is_show" [[contentData.data.title.is_show==1?'checked':'']]>
1074 </label> 1074 </label>
  1075 + <label>&emsp;&emsp;
  1076 + APP6.0版本<input type="checkbox" name="isNewCategory" value="1" id="isNewCategory" [[contentData.isNewCategory==1?'checked':'']]>
  1077 + </label>
1075 </div> 1078 </div>
1076 </div> 1079 </div>
1077 <div class="form-group"> 1080 <div class="form-group">
@@ -528,7 +528,8 @@ var Button = [ @@ -528,7 +528,8 @@ var Button = [
528 } 528 }
529 ] 529 ]
530 }, 530 },
531 - "isNewFloor":"0" 531 + "isNewFloor":"0",
  532 + "isNewCategory":""
532 }, 533 },
533 { 534 {
534 button_name: "文本导航", 535 button_name: "文本导航",
@@ -939,6 +939,14 @@ $(document).on("change", '#isNewFocus', function () { @@ -939,6 +939,14 @@ $(document).on("change", '#isNewFocus', function () {
939 } 939 }
940 Bll.renderDialog("focus-template"); 940 Bll.renderDialog("focus-template");
941 }); 941 });
  942 +$(document).on("change", '#isNewCategory', function () {
  943 + if ($(this).is(':checked')) {
  944 + Bll.module.contentData.isNewCategory = 1;
  945 + }else{
  946 + Bll.module.contentData.isNewCategory = 0;
  947 + }
  948 + Bll.renderDialog("recommendContentFive-template");
  949 +});
942 //*****************************************************************// 950 //*****************************************************************//
943 /*编辑推荐*/ 951 /*编辑推荐*/
944 $(document).on("change", '#editorTalk-is_show', function () { 952 $(document).on("change", '#editorTalk-is_show', function () {