operations.search.postionIndex.js
5.04 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
webpackJsonp([130],[
/* 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: "title"
},{
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="#" data-id="' + items.id + '" data-title="' + items.title + '"' + '" class="btn btn-info btn-xs edit-position">修改</a>');
if (items.status === 0) {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-warning btn-xs open-position">开启</a>');
}
if (items.status === 1) {
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-danger btn-xs close-position">关闭</a>');
}
return HtmArr.join('');
}
}]
})
g.init('/operations/search/getPositionList');
//添加操作
$('#add-position').on('click', function() {
if ('' == $("#position-title").val()) {
common.util.__tip("名称未填","warning");
return;
}
common.util.__ajax({
url:'/operations/search/insertPositionInfo',
data: {
"title": $("#position-title").val()
}
},function(rs){
common.util.__tip("保存成功!","success");
g.reload(1);
},true);
});
//关闭操作
$('tbody').on('click', '.close-position', 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/updatePositionInfo',
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-position', 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/updatePositionInfo',
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"}
]
});
});
// 驳回
var BllEdit = {
toast: function(content, fn) {
var $this = $(this);
common.dialog.confirm("修改名称", content, function() {
common.util.__disButton.call($this);
common.util.__ajax({
url: '/operations/search/updatePositionInfo',
data: fn()
}, function() {
g.reload();
});
});
}
}
//修改操作
$(document).on("click", ".edit-position", function() {
var id = $(this).attr("data-id");
var result=function(){
var title = $('#edit-title').val();
if (title === '' || $.trim(title) === '') {
return '请填写名称';
}
return {
"id" : id,
"title" : title
};
}
BllEdit.toast.call(this, $("#template").html(), result);
//common.util.__tip('请选择导出商品的条件', 'warning');
$('#edit-title').val($(this).attr("data-title"));
});
/***/ }
]);