puzhibing
2023-02-15 2811bab657aab4145b65a45a824fb63e93b58e30
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/**
 * 广告设置管理初始化
 */
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();
});