...
|
...
|
@@ -926,7 +926,30 @@ $(document).on("change", '#recommend-is_show', function () { |
|
|
Bll.module.contentData.data.title.is_show = 1 - Bll.module.contentData.data.title.is_show;
|
|
|
Bll.renderDialog("editorRecommendFloor-template");
|
|
|
});
|
|
|
|
|
|
$(document).on("change", '#productType_1', function () {
|
|
|
if ($(this).is(':checked')) {
|
|
|
Bll.module.contentData.data.productType_1 = 1;
|
|
|
}else{
|
|
|
Bll.module.contentData.data.productType_1 = '';
|
|
|
}
|
|
|
Bll.renderDialog("blkNewProductFloor-template");
|
|
|
});
|
|
|
$(document).on("change", '#productType_2', function () {
|
|
|
if ($(this).is(':checked')) {
|
|
|
Bll.module.contentData.data.productType_2 = 1;
|
|
|
}else{
|
|
|
Bll.module.contentData.data.productType_2 = '';
|
|
|
}
|
|
|
Bll.renderDialog("blkNewProductFloor-template");
|
|
|
});
|
|
|
$(document).on("change", '#productType_3', function () {
|
|
|
if ($(this).is(':checked')) {
|
|
|
Bll.module.contentData.data.productType_3 = 1;
|
|
|
}else{
|
|
|
Bll.module.contentData.data.productType_3 = '';
|
|
|
}
|
|
|
Bll.renderDialog("blkNewProductFloor-template");
|
|
|
});
|
|
|
$(document).on("change", '.is_show_secondFloor', function () {
|
|
|
Bll.module.contentData.data.is_show_secondFloor = $(this).val();
|
|
|
var beginTime = Bll.module.contentData.begin_show_time;
|
...
|
...
|
@@ -1109,7 +1132,10 @@ $(document).on("click", '.priceStyle', function () { |
|
|
Bll.module.contentData.data.priceStyle = $(this).val();
|
|
|
Bll.renderDialog("tfGoodsList-template");
|
|
|
});
|
|
|
|
|
|
$(document).on("click", '.showType', function () {
|
|
|
Bll.module.contentData.data.showType = $(this).val();
|
|
|
Bll.renderDialog("blkNewProductFloor-template");
|
|
|
});
|
|
|
$(document).on("click", '.jumpType', function () {
|
|
|
Bll.module.contentData.data.jumpType = $(this).val();
|
|
|
Bll.renderDialog("tfGoodsList-template");
|
...
|
...
|
|