noticeManage.js
3.73 KB
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
var $ = require('jquery'),
common = require('../common/common');
new common.dropDown({el: "#notice-position"});
var g = new common.grid({
el: "#notice-list",
hash: false,
parms: function () {
return {
title: common.util.__input('notice-title'),
position: common.util.__input('notice-position')
};
},
columns: [
{display: "ID", name: "id"},
{display: "公告", name: "title"},
{display: "位置", name: "position", render: function(item) {
if(item.position == 1) {
return "首页";
} else if(item.position == 2) {
return "个人中心";
}
}},
{display: "url地址", name: "url"},
{display: "开始时间",name: "startTime"},
{display: "结束时间",name: "endTime"},
{
display: "状态",name: "", render: function (item) {
if(item.status == 0) {
return '<a class="btn btn-danger statbtn" data-index="' + item.__index + '">公告已关闭</a>';
} else {
return '<a class="btn btn-warning statbtn" data-index="' + item.__index + '">公告已开启</a>';
}
}
},
{
display: "操作",name: "", render: function (item) {
var arr = [];
arr.push('<a class="btn btn-info add2" data-index="' + item.__index + '">编辑</a>');
arr.push('<a class="btn btn-info delbtn" data-index="' + item.__index + '">删除</a>');
return arr.join("");
}
}
]
});
g.init('/operations/notice/getList');
var Bll = {
toast:function(url, item, hint) {
var e = new common.edit("#baseform");
common.dialog.confirm(hint,
common.util.__template($("#template").html(), item),
function() {
e.submit(url, function (option) {
option.data.startTime=new Date(option.data.startTime).getTime() / 1000;
option.data.endTime=new Date(option.data.endTime).getTime() / 1000;
if($("#intent").val()) {
option.data.url = '{"action":"go.' + $("#intent").val()
+ '","url":"' + $("#url").val() + '"}';
}
option.success=function() {
g.reload();
};
option.error=function(){};
});
});
e.init();
new common.dropDown({el: "#position"});
// new common.dropDown({el: "#intent"});
if($("#position").val() == "1") {
$("#showchannel").show();
} else {
$("#showchannel").hide();
}
$("#position").on('change', function() {
if($("#position").val() == "1") {
$("#showchannel").show();
} else {
$("#showchannel").hide();
}
});
if(item.url && item.url.indexOf('"action"') != -1) {
var urlIndex = '","url":"';
$("#intent").val(item.url.substring('{"action":"go.'.length, item.url.indexOf(urlIndex)));
$("#url").val(item.url.substring(item.url.indexOf(urlIndex) + urlIndex.length, item.url.length - 2));
}
}
};
$('#add-notice').on('click', function() {
var item = {};
Bll.toast('/operations/notice/addNotice', item, "创建公告");
});
$(document).on('click', '.add2', function() {
var item = g.rows[$(this).data("index")];
Bll.toast('/operations/notice/updateNotice', item, "公告编辑");
});
$(document).on('click', '.statbtn', function() {
var statbtn = $(this);
var item = g.rows[$(this).data("index")];
if(item.status == 1) {
item.status = 0;
} else {
item.status = 1;
}
common.util.__ajax({
url: '/operations/notice/setStatus',
data: {
id: item.id,
status: item.status
}
}, function() {
g.reload();
});
});
$(document).on('click', '#filter-btn', function() {
g.reload(1);
});
$(document).on('click', '.delbtn', function() {
var item = g.rows[$(this).data("index")];
common.dialog.confirm("警告",
"确认删除?",
function() {
common.util.__ajax({
url: '/operations/notice/delNotice',
data: {id: item.id}
}, function() {
g.reload();
});
});
});