Merge remote-tracking branch 'origin/test6.0' into test6.0
Showing
3 changed files
with
13 additions
and
1 deletions
@@ -1072,6 +1072,9 @@ | @@ -1072,6 +1072,9 @@ | ||
1072 | <label>   | 1072 | <label>   |
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>   | ||
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"> |
@@ -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 () { |
-
Please register or login to post a comment