bannerIndex.js
4.25 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
'use strict';
var $ = require('jquery'),
common = require('../../../common/common');
require('../../../common/util/datepicker');
var g = new common.grid({
el: '#basicTable',
size: 10,
parms: function() {
return {
positionId: common.util.__input('postionId'),
caption : $("#caption").val()
};
},
columns: [{
display: "ID",
name: "id"
}, {
display: '名称',
name: "caption"
}, {
display: '位置',
name: "positionName"
}, {
display: '模板',
name: "templetName"
}, {
display: '大分类',
name: "maxSortName"
}, {
display: '中分类',
name: "middleSortName"
}, {
display: '尺码',
name: "sizeName"
}, {
display: '品牌',
name: "brandNameList"
}, {
display: '风格',
name: "styleNameList"
}, {
display: '颜色',
name: "colorName"
}, {
display: '价格',
name: "price"
}, {
display: '性别',
name: "gender",
render: function(item) {
if(item.gender==1){
var name ="男" ;
}else if (item.gender==2){
var name ="女" ;
}else {
var name ="通用" ;
}
return name;
}
},{
display: '状态',
name: "status",
render: function(item) {
if(item.status==1){
var name ="开启" ;
}else {
var name ="关闭" ;
}
return name;
}
}, {
display: '创建时间',
name: "createTimeStr"
}, {
display: '操作',
name: "status",
render: function(items) {
var HtmArr = [];
if (items.status === '1') {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-danger btn-xs close-banner">关闭</a>');
} else {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-warning btn-xs open-banner">开启</a>');
}
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-info btn-xs del-banner">删除</a>');
HtmArr.push('<a href="/search/bannerEdit/' + items.id + '" class="btn btn-info btn-xs edit-banner">修改</a>');
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-info btn-xs view-banner">预览</a>');
return HtmArr.join('');
}
}]
})
g.init('/operations/search/getBannerList');
$("#filter-btn").click(function() {
g.reload(1);
});
//关闭操作
$('tbody').on('click', '.close-banner', function() {
var item = g.rows[$(this).data("index")];
common.util.__ajax({
url: '/operations/search/updateBannerStatus',
data: {
id: item.id,
status: 0
}
}, function(res) {
if (res.code == 200) {
common.util.__tip('关闭成功', 'success');
g.reload();
} else {
common.util.__tip(res.message);
}
}, true);
});
//开启操作
$('tbody').on('click', '.open-banner', function() {
var item = g.rows[$(this).data("index")];
common.util.__ajax({
url: '/operations/search/updateBannerStatus',
data: {
id: item.id,
status: 1
}
}, function(res) {
if (res.code == 200) {
common.util.__tip('开启成功', 'success');
g.reload();
} else {
common.util.__tip(res.message);
}
}, true);
});
//删除操作
$('tbody').on('click', '.del-banner', function() {
var item = g.rows[$(this).data("index")];
common.util.__ajax({
url: '/operations/search/delBannerById',
data: {
id: item.id
}
}, function(res) {
if (res.code == 200) {
common.util.__tip('删除成功', 'success');
g.reload();
} else {
common.util.__tip(res.message);
}
}, true);
});
new common.dropDown({el:"#postionId", ajax:"searchPostion", params:function(){
return {postionId:$("#postionId").val()};
}});