Authored by 马力

搜索广告迁移的bug

... ... @@ -58,7 +58,7 @@ module.exports=function(app) {
app.get("/search/bannerEdit/:id","operations.search.bannerEdit", "operationsSearch_selectBannerById", function (rs,req,res) {
this.$extend = {
moduleName: "运营管理",
pageName: "修改广告模板",
pageName: "修改搜索广告管理",
action: '/operations/search/updateBannerInfo',
data:rs.data
}
... ... @@ -67,7 +67,7 @@ module.exports=function(app) {
app.get("/search/bannerAdd", "operations.search.bannerEdit", "operationsSearch_selectBannerById", function (rs,req,res){
this.$extend = {
moduleName: "运营管理",
pageName: "新增广告模板",
pageName: "新增搜索广告管理",
action: '/operations/search/insertBanner',
data: rs.data
}
... ...
... ... @@ -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(){
... ...
... ... @@ -59,7 +59,7 @@ $('#add-position').on('click', function() {
"title": $("#position-title").val()
}
},function(rs){
common.util.__tip("排序保存成功!","success");
common.util.__tip("保存成功!","success");
g.reload(1);
},true);
});
... ... @@ -68,38 +68,62 @@ $('#add-position').on('click', function() {
$('tbody').on('click', '.close-position', function() {
var item = g.rows[$(this).data("index")];
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);
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")];
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);
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"}
]
});
});
// 驳回
... ...
... ... @@ -49,36 +49,60 @@ g.init('/operations/search/getTempletList');
$('tbody').on('click', '.close-templet', function() {
var item = g.rows[$(this).data("index")];
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);
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")];
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);
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"}
]
});
});
\ No newline at end of file
... ...