vip.Index.js
4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
webpackJsonp([182],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var $ = __webpack_require__(1),
common=__webpack_require__(2);
// 初始化筛选框
new common.dropDown({el: "#shopId", ajax: "shopsRest"});
new common.dropDown({el: "#brandId", ajax: "brand"});
/**
* 商品VIP列表
* @type {common.grid}
*/
var g = new common.grid({
el: '#productVipTable',
parms: function () {
return {
productSkn: common.util.__input('productSkn'),
shopId: common.util.__input('shopId'),
brandId: common.util.__input('brandId'),
vipDiscountType: common.util.__input('vipDiscountType')
};
},
columns: [
{
display: "复选框",
width: 90,
render: function (item) {
var HtmArr = [];
HtmArr.push('<label><input name="choose" type="checkbox" value="'+item.productSKN+'"/></label>');
return HtmArr.join('');
}
},
{
display: "SKN",
name: "productSKN"
}, {
display: "店铺",
name: "shopName"
}, {
display: "品牌",
name: "brandName"
},{
display: "价格",
name: "price"
},{
display: "VIP价格",
name: "vipPrice"
}, {
display: "VIP状态",
render: function (item) {
var HtmArr = [];
if(item.vipDiscountType == 3){
HtmArr.push('<label>关闭</label>');
}else{
HtmArr.push('<label>开启</label>');
}
return HtmArr.join('');
}
}, {
display: '操作',
render: function (item) {
var HtmArr = [];
if(item.vipDiscountType == 3){
HtmArr.push('<a onclick="changeStatus('+item.productSKN+',1)" href="javascript:;" class="btn btn-info">开启</a>');
}else{
HtmArr.push('<a onclick="changeStatus('+item.productSKN+',2)" href="javascript:;" class="btn btn-danger">关闭</a>');
}
return HtmArr.join('');
}
}]
});
g.init('/vip/queryProductVipList');
/**
* 批量修改商品VIP状态
* @param status
*/
function batchChangeStatus(status) {
var chk_value =[];
$('input[name="choose"]:checked').each(function(){
chk_value.push($(this).val());
});
if(chk_value.length==0) {
alert("你还没有选择任何SKN!");
return;
}
var params= {
sknList: chk_value.toString(),
changeStatus: status
};
common.dialog.confirm("警告",
"确认批量修改商品VIP状态?",
function () {
common.util.__ajax({
url: '/vip/batchChangeStatus',
data: params
}, function(res) {
g.reload();
$("[name='all']").removeAttr("checked");
});
});
}
/**
* 搜索商品VIP
*/
$("#searchFilter").click(function() {
g.reload(1);
$("[name='all']").removeAttr("checked");
});
/**
* 单个修改商品VIP状态
* @param productSkn
* @param status
*/
function changeStatus(productSkn,status) {
var param = {
productSkn: productSkn,
productVipStatus: status
};
common.dialog.confirm("警告",
"确认修改商品VIP状态?",
function () {
common.util.__ajax({
url: '/vip/changeStatus',
data: param
}, function(res) {
g.reload();
$("[name='all']").removeAttr("checked");
});
});
};
/**
* 全选、反选
* @constructor
*/
function DoCheck()
{
var ch=document.getElementsByName("choose");
if(document.getElementsByName("all")[0].checked==true)
{
for(var i=0;i<ch.length;i++)
{
ch[i].checked=true;
}
}else{
for(var i=0;i<ch.length;i++)
{
ch[i].checked=false;
}
}
}
window.DoCheck = DoCheck;
window.changeStatus = changeStatus;
/**
* 切换TAB
* @param tab
*/
function changeTab(tab) {
if(tab == 1){
$("#shopVipTab").show();
$("#productVipTab").hide();
}else if(tab == 2){
$("#shopVipTab").hide();
$("#productVipTab").show();
}
}
window.changeTab = changeTab;
window.batchChangeStatus = batchChangeStatus;
/***/ }
]);