...
|
...
|
@@ -123,6 +123,13 @@ var Bll = { |
|
|
module.contentData.data.recommendChannel='';
|
|
|
}
|
|
|
}
|
|
|
if(module.contentData.template_name == 'blkNewProductFloor'){
|
|
|
if(module.contentData.data.productType_1==''&&module.contentData.data.productType_2==''&&module.contentData.data.productType_3==''){
|
|
|
common.util.__tip('商品属性不能为空!', 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
var couponFlag = true;
|
|
|
//好店推荐切换radio,增加/删除校验
|
|
|
var shopRecommendFlag = false;
|
...
|
...
|
@@ -926,7 +933,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 +1139,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");
|
...
|
...
|
|