operations.search.templetIndex.js
3.56 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
webpackJsonp([133],[
/* 0 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var $ = __webpack_require__(1),
common = __webpack_require__(2);
__webpack_require__(9);
var g = new common.grid({
el: '#basicTable',
size: 10,
parms: function() {
return {};
},
columns: [{
display: "ID",
name: "id"
}, {
display: '名称',
name: "caption"
},{
display: '状态',
name: "status",
render: function(item) {
if(item.status==1){
var name ="开启" ;
}else {
var name ="关闭" ;
}
return name;
}
}, {
display: '操作',
name: "status",
render: function(items) {
var HtmArr = [];
HtmArr.push('<a href="/search/templetEdit/' + items.id + '" class="btn btn-info btn-xs edit-templet">修改</a>');
if (items.status === '1') {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-danger btn-xs close-templet">关闭</a>');
} else {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-warning btn-xs open-templet">开启</a>');
}
return HtmArr.join('');
}
}]
})
g.init('/operations/search/getTempletList');
//关闭操作
$('tbody').on('click', '.close-templet', function() {
var item = g.rows[$(this).data("index")];
new common.dialog({
title: "关闭搜索广告模板",
width: "360px",
content: '确认关闭搜索广告模板么?',
zIndex: 52,
button: [
{value: "确认", css:"btn-primary", callback: function () {
common.util.__ajax({
url: '/operations/search/updateTempletStatus',
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);
}},
{value: "取消", css:"btn-default"}
]
});
});
//开启操作
$('tbody').on('click', '.open-templet', function() {
var item = g.rows[$(this).data("index")];
new common.dialog({
title: "开启搜索广告模板",
width: "360px",
content: '确认开启搜索广告模板么?',
zIndex: 52,
button: [
{value: "确认", css:"btn-primary", callback: function () {
common.util.__ajax({
url: '/operations/search/updateTempletStatus',
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);
}},
{value: "取消", css:"btn-default"}
]
});
});
/***/ }
]);