/**
|
* 广告设置管理初始化
|
*/
|
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: 'type', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.type != '' && row.type != null) {
|
if (row.type == 1){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="弹窗广告" onfocus="TUser.tooltip()">弹窗广告</p>']
|
} else if (row.type == 2){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="首页底部广告" onfocus="TUser.tooltip()">首页底部广告</p>']
|
}
|
}
|
return btn;
|
}
|
},
|
{title: '所属省', field: 'provinceName', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.provinceName != '' && row.provinceName != null) {
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.provinceName + '" onfocus="TUser.tooltip()">' + row.provinceName + '</p>']
|
}
|
return btn;
|
}
|
},
|
{title: '广告图片', field: 'imgUrl', visible: true, align: 'center', valign: 'middle',width:'10%',
|
formatter: function (value, row) {
|
if (row.imgUrl == null || row.imgUrl == '') {
|
return '<a class = "view" href="javascript:void(0)"><img style="width: 50px;height:50px;" src="' + Feng.ctxPath + '/static/img/NoPIC.png" /></a>';
|
} else {
|
return '<a class = "view" href="javascript:void(0)"><img style="width: 90px;height:50px;" src="' + row.imgUrl + '" /></a>';
|
}
|
},
|
events: 'operateEvents'
|
},
|
{title: '是否跳转', field: 'isJump', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.isJump != '' && row.isJump != null) {
|
if (row.isJump == 1){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="是" onfocus="TUser.tooltip()">是</p>']
|
} else if (row.isJump == 2){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="否" onfocus="TUser.tooltip()">否</p>']
|
}
|
}
|
return btn;
|
}
|
},
|
{title: '跳转类型', field: 'jumpType', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.jumpType != '' && row.jumpType != null) {
|
if (row.jumpType == 1){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="外部" onfocus="TUser.tooltip()">外部</p>']
|
} else if (row.jumpType == 2){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="内部" onfocus="TUser.tooltip()">内部</p>']
|
}
|
}
|
return btn;
|
}
|
},
|
{title: '跳转内容', field: 'jumpUrl', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.jumpUrl != '' && row.jumpUrl != null) {
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.jumpUrl + '" onfocus="TUser.tooltip()">' + row.jumpUrl + '</p>']
|
}
|
return btn;
|
}
|
},
|
{title: '状态', field: 'state', visible: true, align: 'center', valign: 'middle',
|
formatter: function (value, row) {
|
var btn = "";
|
if(row.state != '' && row.state != null) {
|
if (row.state == 1){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color: #0d8ddb;" title="已上线" onfocus="TUser.tooltip()">已上线</p>']
|
} else if (row.state == 2){
|
btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color: red;" title="已下线" onfocus="TUser.tooltip()">已下线</p>']
|
}
|
}
|
return btn;
|
}
|
}
|
];
|
};
|
|
/**
|
* 检查是否选中
|
*/
|
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 + '/tAdvertisement/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 + '/tAdvertisement/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 + "/tAdvertisement/delete", function (data) {
|
swal("删除成功", "您已经成功删除了" + name + "。", "success");
|
TAdvertisement.table.refresh();
|
}, function (data) {
|
swal("删除失败", data.responseJSON.message + "!", "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 = {};
|
queryData['insertTime'] = $("#insertTime").val();
|
queryData['name'] = $("#name").val();
|
queryData['type'] = $("#type").val();
|
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, "/tAdvertisement/list", defaultColunms);
|
table.setPaginationType("server");
|
TAdvertisement.table = table.init();
|
});
|