articleCategoryManager.js
3.97 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
* Created by wangqianjun on 16/3/22.
*/
var $ = require('jquery');
common = require('../common/common');
var ENUM = {
GenderEnum: {
'1': '男',
'2': '女',
'3': '通用'
},
StatusEnum: {
0:'关闭',
1:'开启'
}
}
var g = new common.grid({
el: '#list',
size: 10,
parms: function () {
return {
//articleTitle: common.util.__input('articleTitle'),
//articleGender: common.util.__input('articleGender'),
//authorId: common.util.__input('authorId'),
//maxSortId: common.util.__input('maxSortId'),
//status: common.util.__input('status'),
//orderBy: common.util.__input('orderBy'),
//startTime: common.util.__input('starttime'),
//endTime: common.util.__input('endtime'),
};
},
columns: [
{
display: 'ID',
name: "id"
},
{
display: '排序',
name: "orderBy"
}, {
display: '状态',
render: function (item) {
return "<p>" + ENUM.StatusEnum[item.status] + "</p>";
}
}, {
display: '分类',
name: "name"
}, {
display: '级别',
render: function (item) {
var level="一级";
if (item.parentId != 0) {
level = "二级"
}
return "<p>" +level+ "</p>";
}
},
{
display: '操作',
//}
name: "status",
render: function (items) {
var HtmArr = [];
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-primary btn-xs info-modify">编辑</a>');
HtmArr.push('<a data-index="' + items.__index + '" href="JavaScript:;" class="btn btn-danger btn-xs info-del">删除</a>');
return HtmArr.join('');
}
}]
});
g.init('/guang/article/categoryist');
//==================== 按钮点击事件 =====================//
//添加
$(document).on('click', '#add', function() {
articleCategoryOP("新增", '/guang/article/sort/add', {})
});
//编辑
$(document).on('click', '.info-modify', function() {
var item = g.rows[$(this).data("index")];
articleCategoryOP("修改", '/guang/article/sort/update', item);
});
//删除
$(document).on('click', '.info-del', function() {
var item = g.rows[$(this).data("index")];
common.dialog.confirm("温馨提示","确定要删除该文章分类?" , function() {
common.util.__ajax({
url: '/guang/article/sort/del',
data: {
id: item.id,
}
}, function(res) {
if (res.code == 200) {
common.util.__tip('删除成功', 'success');
g.reload();
} else {
common.util.__tip(res.message);
}
});
});
});
function articleCategoryOP(prefix, url, item) {
var a =new common.edit(".confirm");
common.dialog.confirm(prefix+'文章分类', common.util.__template2($("#template").html(), item), function () {
//
return a.submit(url,function(option){
option.success=function(res){
res=res.data;
if(res.code=="200"){
a.$tip("提交成功", function() {
g.reload();
}, 'growl-success');
}else{
a.$tip(res.message);
}
return false;
},
option.error=function(res){
a.$tip(res.message);
}
});
});
a.init();
if (prefix == '新增') {
$('#maxsord').show();
new common.dropDown({
el: "#parentId",
ajax: 'guangGetSortList'
});
} else {
$('#maxsord').hide();
}
}