...
|
...
|
@@ -1036,6 +1036,15 @@ $(document).on("click", '.dataSourceNewProduct', function () { |
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
// 拼团商品列表 列表展示方向发生变化,需要重新刷新页面
|
|
|
$(document).on("click", '.layout_float', function () {
|
|
|
var _layout_float = $(this).val();
|
|
|
Bll.module.contentData.data.layout_float = _layout_float;
|
|
|
Bll.renderDialog("collageBuyPrdList-template");
|
|
|
|
|
|
});
|
|
|
|
|
|
// 新商品列表
|
|
|
$(document).on("click", '.showName', function () {
|
|
|
var showName = $(this).val();
|
...
|
...
|
@@ -1055,8 +1064,31 @@ $(document).on("click", '.showPrice', function () { |
|
|
}else{
|
|
|
Bll.module.contentData.data.showPrice = "";
|
|
|
}
|
|
|
});
|
|
|
|
|
|
|
|
|
// 拼团商品列表
|
|
|
$(document).on("click", '.showProductName', function () {
|
|
|
if ($(this).is(":checked")){
|
|
|
Bll.module.contentData.data.showProductName = "1";
|
|
|
}else{
|
|
|
Bll.module.contentData.data.showProductName = "";
|
|
|
}
|
|
|
});
|
|
|
// 拼团商品列表
|
|
|
$(document).on("click", '.showGroupPrice', function () {
|
|
|
if ($(this).is(":checked")){
|
|
|
Bll.module.contentData.data.showGroupPrice = "1";
|
|
|
}else{
|
|
|
Bll.module.contentData.data.showGroupPrice = "";
|
|
|
}
|
|
|
});
|
|
|
// 拼团商品列表
|
|
|
$(document).on("click", '.showGroupNum', function () {
|
|
|
if ($(this).is(":checked")){
|
|
|
Bll.module.contentData.data.showGroupNum = "1";
|
|
|
}else{
|
|
|
Bll.module.contentData.data.showGroupNum = "";
|
|
|
}
|
|
|
});
|
|
|
|
|
|
//分隔图
|
...
|
...
|
|