/**
|
* 广告设置管理初始化
|
*/
|
var TAdvertisement = {
|
id: "TAdvertisementTable", //表格id
|
seItem: null, //选中的条目
|
table: null,
|
layerIndex: -1
|
};
|
|
/**
|
* 初始化表格的列
|
*/
|
TAdvertisement.initColumn = function () {
|
return [
|
{field: 'selectItem', radio: true},
|
{title: '主键ID', field: 'id', visible: false, align: 'center', valign: 'middle'},
|
{title: '添加时间', field: 'insertTime', visible: true, align: 'center', valign: 'middle',width:'10%',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.insertTime != '' && row.insertTime != null) {
|
var time = row.insertTime.replace(" ",'<br>');
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.insertTime + '" onfocus="TUser.tooltip()">' + time + '</p>']
|
}
|
return btn;
|
}
|
},
|
{title: '公告标题', field: 'name', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.name != '' && row.name != null) {
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.name + '" onfocus="TUser.tooltip()">' + row.name + '</p>']
|
}
|
return btn;
|
}
|
},
|
{title: '发送对象', field: 'sendUser', visible: true, align: 'center', valign: 'middle',
|
formatter:function (data) {
|
if(data==1){
|
return '所有用户/所有司机'
|
}
|
if(data==2){
|
return '部分用户/所有司机'
|
}
|
if(data==3){
|
return '所有用户/部分司机'
|
}
|
if(data==4){
|
return '部分用户/部分司机'
|
}
|
if(data==5){
|
return '所有用户'
|
}
|
if(data==6){
|
return '部分用户'
|
}
|
if(data==7){
|
return '所有司机'
|
}
|
if(data==8){
|
return '部分司机'
|
}
|
}
|
},
|
{title: '状态', field: 'status', visible: true, align: 'center', valign: 'middle',
|
formatter:function (data) {
|
return "已发送"
|
}
|
},
|
];
|
};
|
|
/**
|
* 检查是否选中
|
*/
|
TAdvertisement.check = function () {
|
var selected = $('#' + this.id).bootstrapTable('getSelections');
|
if(selected.length == 0){
|
Feng.info("请先选中表格中的某一记录!");
|
return false;
|
}else{
|
TAdvertisement.seItem = selected[0];
|
return true;
|
}
|
};
|
|
/**
|
* 点击添加广告设置
|
*/
|
TAdvertisement.openAddTAdvertisement = function () {
|
var index = layer.open({
|
type: 2,
|
title: '添加通知',
|
area: ['100%', '100%'], //宽高
|
fix: false, //不固定
|
maxmin: true,
|
content: Feng.ctxPath + '/tAdvertisementInform/tAdvertisement_add'
|
});
|
this.layerIndex = index;
|
};
|
|
/**
|
* 打开查看广告设置详情
|
*/
|
TAdvertisement.openTAdvertisementDetail = function () {
|
if (this.check()) {
|
var index = layer.open({
|
type: 2,
|
title: '编辑广告图',
|
area: ['100%', '100%'], //宽高
|
fix: false, //不固定
|
maxmin: true,
|
content: Feng.ctxPath + '/tAdvertisementDefined/tAdvertisement_update/' + TAdvertisement.seItem.id
|
});
|
this.layerIndex = index;
|
}
|
};
|
|
/**
|
* 删除广告设置
|
*/
|
TAdvertisement.delete = function () {
|
if (this.check()) {
|
var name = TAdvertisement.seItem.name;
|
if (name == "" || name == null || name == undefined) {
|
name = "该广告";
|
} else {
|
name = "【" + name + "】";
|
}
|
swal({
|
title: "您是否确认删除" + name + "?",
|
text: "请谨慎操作,删除后不可恢复!",
|
type: "warning",
|
showCancelButton: true,
|
confirmButtonColor: "#DD6B55",
|
confirmButtonText: "删除",
|
closeOnConfirm: false
|
}, function () {
|
var ajax = new $ax(Feng.ctxPath + "/tAdvertisementInform/delete", function (data) {
|
swal("删除成功", "您已经成功删除了" + name + "。", "success");
|
TAdvertisement.table.refresh();
|
}, function (data) {
|
swal("删除失败", "warning");
|
});
|
ajax.set("tAdvertisementId",TAdvertisement.seItem.id);
|
ajax.start();
|
});
|
}
|
};
|
|
/**
|
* 上线
|
*/
|
TAdvertisement.up = function(){
|
if (this.check()) {
|
var name = TAdvertisement.seItem.name;
|
if (name == "" || name == null || name == undefined) {
|
name = "该广告";
|
} else {
|
name = "【" + name + "】";
|
}
|
if (TAdvertisement.seItem.state != 2) {
|
swal("上线失败", "【已下线】状态下才能执行此操作", "warning");
|
return;
|
} else {
|
swal({
|
title: "您是否确认上线" + name + "?",
|
text: "请谨慎操作!",
|
type: "warning",
|
showCancelButton: true,
|
confirmButtonColor: "#DD6B55",
|
confirmButtonText: "上线",
|
closeOnConfirm: false
|
}, function () {
|
var ajax = new $ax(Feng.ctxPath + "/tAdvertisement/opt", function (data) {
|
swal("上线成功", "您已经成功上线了" + name + "。", "success");
|
TAdvertisement.table.refresh();
|
}, function (data) {
|
swal("上线失败", data.responseJSON.message + "!", "warning");
|
});
|
ajax.set("tAdvertisementId", TAdvertisement.seItem.id);
|
ajax.set("optType", 1);
|
ajax.start();
|
});
|
}
|
}
|
}
|
|
/**
|
* 下线
|
*/
|
TAdvertisement.down = function(){
|
if (this.check()) {
|
var name = TAdvertisement.seItem.name;
|
if (name == "" || name == null || name == undefined) {
|
name = "该广告";
|
} else {
|
name = "【" + name + "】";
|
}
|
if (TAdvertisement.seItem.state != 1) {
|
swal("下线失败", "【已上线】状态下才能执行此操作", "warning");
|
return;
|
} else {
|
swal({
|
title: "您是否确认下线" + name + "?",
|
text: "请谨慎操作!",
|
type: "warning",
|
showCancelButton: true,
|
confirmButtonColor: "#DD6B55",
|
confirmButtonText: "下线",
|
closeOnConfirm: false
|
}, function () {
|
var ajax = new $ax(Feng.ctxPath + "/tAdvertisement/opt", function (data) {
|
swal("下线成功", "您已经成功下线了" + name + "。", "success");
|
TAdvertisement.table.refresh();
|
}, function (data) {
|
swal("下线失败", data.responseJSON.message + "!", "warning");
|
});
|
ajax.set("tAdvertisementId", TAdvertisement.seItem.id);
|
ajax.set("optType", 2);
|
ajax.start();
|
});
|
}
|
}
|
}
|
|
/**
|
* 查询广告设置列表
|
*/
|
TAdvertisement.search = function () {
|
var queryData = {};
|
TAdvertisement.table.refresh({query: queryData});
|
};
|
TAdvertisement.resetSearch = function () {
|
$("#insertTime").val("");
|
$("#name").val("");
|
$("#type").val("");
|
TAdvertisement.search();
|
};
|
|
$(function () {
|
var defaultColunms = TAdvertisement.initColumn();
|
var table = new BSTable(TAdvertisement.id, "/tAdvertisementInform/list", defaultColunms);
|
table.setPaginationType("server");
|
TAdvertisement.table = table.init();
|
});
|