Authored by Li

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

... ... @@ -1072,6 +1072,9 @@
<label>&emsp;&emsp;
是否显示<input type="checkbox" name="is_show" value="1" id="recommendContentFive-is_show" [[contentData.data.title.is_show==1?'checked':'']]>
</label>
<label>&emsp;&emsp;
APP6.0版本<input type="checkbox" name="isNewCategory" value="1" id="isNewCategory" [[contentData.isNewCategory==1?'checked':'']]>
</label>
</div>
</div>
<div class="form-group">
... ...
... ... @@ -528,7 +528,8 @@ var Button = [
}
]
},
"isNewFloor":"0"
"isNewFloor":"0",
"isNewCategory":""
},
{
button_name: "文本导航",
... ...
... ... @@ -939,6 +939,14 @@ $(document).on("change", '#isNewFocus', function () {
}
Bll.renderDialog("focus-template");
});
$(document).on("change", '#isNewCategory', function () {
if ($(this).is(':checked')) {
Bll.module.contentData.isNewCategory = 1;
}else{
Bll.module.contentData.isNewCategory = 0;
}
Bll.renderDialog("recommendContentFive-template");
});
//*****************************************************************//
/*编辑推荐*/
$(document).on("change", '#editorTalk-is_show', function () {
... ...