...
|
...
|
@@ -101,56 +101,91 @@ $("#filter-btn").click(function() { |
|
|
$('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);
|
|
|
new common.dialog({
|
|
|
title: "关闭搜索广告管理",
|
|
|
width: "360px",
|
|
|
content: '确认关闭搜索广告管理么?',
|
|
|
zIndex: 52,
|
|
|
button: [
|
|
|
{value: "确认", css:"btn-primary", callback: function () {
|
|
|
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);
|
|
|
}},
|
|
|
{value: "取消", css:"btn-default"}
|
|
|
]
|
|
|
});
|
|
|
|
|
|
});
|
|
|
//开启操作
|
|
|
$('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);
|
|
|
new common.dialog({
|
|
|
title: "开启搜索广告管理",
|
|
|
width: "360px",
|
|
|
content: '确认开启搜索广告管理么?',
|
|
|
zIndex: 52,
|
|
|
button: [
|
|
|
{value: "确认", css:"btn-primary", callback: function () {
|
|
|
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);
|
|
|
}},
|
|
|
{value: "取消", css:"btn-default"}
|
|
|
]
|
|
|
});
|
|
|
|
|
|
});
|
|
|
//删除操作
|
|
|
$('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.dialog({
|
|
|
title: "删除搜索广告管理",
|
|
|
width: "360px",
|
|
|
content: '确认删除搜索广告管理么?',
|
|
|
zIndex: 52,
|
|
|
button: [
|
|
|
{value: "确认", css:"btn-primary", callback: function () {
|
|
|
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);
|
|
|
}},
|
|
|
{value: "取消", css:"btn-default"}
|
|
|
]
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
new common.dropDown({el:"#postionId", ajax:"searchPostion", params:function(){
|
...
|
...
|
|