sysmodule.js
12.9 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
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
layui.config({
base: "/js/"
}).use(['form', 'vue', 'ztree', 'layer', 'jquery', 'table', 'droptree', 'hhweb', 'utils'], function () {
var form = layui.form,
layer = layui.layer,
$ = layui.jquery,
areaName = "base",
tableName = "UserSession",
table = layui.table,
hhweb = layui.hhweb;
var app = {
data: {
menusMainElem: $("#menusMain"),
menuElem: $("#menuElem"),
tableMainObj: null,
tableMenus: null,
mainList: "mainList",
menuList: "menuList",
treeElem: $("#tree"),
treeObj: null,
treeSetting: {
view: { selectedMulti: false },
data: {
key: {
name: 'Name',
title: 'Name'
},
simpleData: {
enable: true,
idKey: 'Id',
pIdKey: 'ParentId',
rootPId: 'null'
}
},
callback: {
onClick: function (event, treeId, treeNode) {
app.data.tableMainObj = app.methods.initTableMain({ pId: treeNode.Id, parentId: treeNode.ParentId, cascadeId: treeNode.CascadeId });
}
}
}
},
methods: {
initMenu: () => {
app.data.menusMainElem.loadMenus("SysModule", 1);
app.data.menuElem.loadMenus("SysModule", 2);
},
initTree: (falg = true) => {
$.getJSON(`/${areaName}/${tableName}/GetModules`, function (json) {
app.data.treeObj = $.fn.zTree.init(app.data.treeElem, app.data.treeSetting);
json.push({ Name: "根节点", Id: null, ParentId: "" });
app.data.treeObj.addNodes(null, json);
app.data.treeObj.expandAll(true);
if (falg) app.data.tableMainObj = app.methods.initTableMain({ pId: "" },);
});
app.data.treeElem.height($("div.layui-table-view").height() - 20);
},
initTableMain: (config) => {
let opt = {
url: `/${areaName}/${tableName}/GetModulesTable`,
where: config,
page: { curr: 1 }
}
app.data.tableMainObj = app.methods.initTable(app.data.mainList, opt);
},
initTableMenu: (config) => {
let opt = {
url: `/${areaName}/SysModule/LoadMenus`,
where: config
}
return app.methods.initTable(app.data.menuList, opt);
},
initFrom: () => {
layui.droptree("/base/UserSession/GetModules", "#ParentName", "#ParentId", false);
},
initTable: (elem, opt) => {
var configOpt = {
method: "post"
};
$.extend(configOpt, opt);
table.reload(elem, configOpt);
}
},
init: () => {
app.methods.initTree();
app.methods.initMenu();
app.methods.initFrom();
}
}
app.init();
//新增(编辑)模块对话框
let menuModelApp = null;
var editDlg = function () {
menuModelApp = new Vue({
el: "#formEdit"
});
var update = false; //是否为更新
var show = function (data) {
var title = update ? "编辑" : "新增";
let index = layer.open({
title: title,
area: ["580px", "400px"],
type: 1,
content: $('#divEdit'),
success: function () {
menuModelApp.$set('$data', data);
$(":radio[name='IsShow'][value='" + data.IsShow + "']").prop("checked", "checked");
form.render();
}
});
var url = "/base/SysModule/Add";
if (update) url = "/base/SysModule/Update";
//提交数据
form.on('submit(formSubmit)', function (data) {
$.post(url, data.field, function (data) {
layer.msg(data.Message);
if ((!update) && data.Code == 200) { //新增成功要刷新左边的树
app.methods.initTree();
}
if (data.Code == 200) {
app.methods.initTableMain();
layer.close(index);
}
}, "json");
return false;
});
}
return {
add: function () { //弹出新增
update = false;
show({
Id: "",
SortNo: 1,
IconName: '',
IsShow: 1
});
},
update: function (data) { //弹出编辑框
update = true;
show(data);
}
};
}();
//新增菜单对话框
let menuApp = null;
var meditDlg = function () {
menuApp = new Vue({
el: "#mfromEdit"
});
var update = false; //是否为更新
var show = function (data) {
var title = update ? "编辑菜单" : "新增菜单";
let index = layer.open({
title: title,
area: ["580px", "550px"],
type: 1,
content: $('#divMenuEdit'),
success: function () {
menuApp.$set('$data', data);
}
});
var moduleId = data.ModuleId
var url = "/base/SysModule/AddMenu";
if (update) url = "/base/SysModule/UpdateMenu";
//提交数据
form.on('submit(mformSubmit)', function (data) {
$.post(url, data.field, function (data) {
if (data.Code == 200) {
layer.msg(data.Message, { time: 4000 });
layer.close(index);
app.methods.initTableMenu({ moduleId: moduleId });
}
else {
layer.alert(data.Message, { icon: 2, shadeClose: true, title: "错误信息" });
}
}, "json");
return false;
});
}
return {
add: function (moduleId) { //弹出新增
update = false;
show({
Id: "",
ModuleId: moduleId,
Sort: 1,
AreaMenus: 1
});
},
update: function (data) { //弹出编辑框
update = true;
show(data);
}
};
}();
//监听模块表格内部按钮
table.on('tool(list)', function (obj) {
var data = obj.data;
if (obj.event === 'detail') { //查看
app.methods.initTableMenu({ moduleId: data.Id });
}
});
//监听页面主按钮操作
var active = {
//删除模块
btnDel: function () {
var checkStatus = table.checkStatus('mainList'),
data = checkStatus.data;
hhweb.del("/base/SysModule/Delete", data.map(function (e) { return e.Id; }), function () {
app.methods.initTree();
});
},
btnDelMenu: function () {
var checkStatus = table.checkStatus('menuList'),
data = checkStatus.data;
hhweb.del("/base/SysModule/DelMenu", data.map(function (e) { return e.Id; }), app.methods.initTableMenu);
},
//新增模块
btnAdd: function () {
editDlg.add();
},
btnAddMenu: function () {
var checkStatus = table.checkStatus('mainList'),
data = checkStatus.data;
if (data.length != 1) {
layer.msg("请选择一个要新增菜单的模块后新增菜单!");
return;
}
meditDlg.add(data[0].Id);
},
//编辑模块
btnEdit: function () {
var checkStatus = table.checkStatus('mainList')
, data = checkStatus.data;
if (data.length != 1) {
layer.alert("请选择编辑的行,且同时只能编辑一行", { icon: 2, shadeClose: true, title: "错误信息" });
return;
}
editDlg.update(data[0]);
},
btnAddCopyMenuModel: function () {
var checkStatus = table.checkStatus('mainList'),
data = checkStatus.data;
if (data.length != 1) {
layer.alert("请选择编辑的行,且同时只能复制一行", { icon: 2, shadeClose: true, title: "错误信息" });
return;
}
editDlg.add();
var dataAll = table.cache["mainList"];
var maxSortNo = Math.max.apply(Math, dataAll.map(function (o) { return o.SortNo; }));
data[0].SortNo = maxSortNo + 10;
setTimeout(() => {
menuModelApp.$set('$data', data[0]);
$(":radio[name='IsShow'][value='" + data.IsShow + "']").prop("checked", "checked");
form.render();
}, 400);
},
btnAddCopyMenu: function () {
var checkStatus = table.checkStatus('menuList'),
data = checkStatus.data;
if (data.length != 1) {
layer.msg("请选择编辑的菜单");
return;
}
meditDlg.add(data[0].ModuleId);
var dataAll = table.cache["menuList"];
var maxSort = Math.max.apply(Math, dataAll.map(function (o) { return o.Sort; }));
setTimeout(() => {
data[0].Sort = maxSort + 10;
data[0].Id = "";
menuApp.$set('$data', data[0]);
}, 400);
},
btnEditMenu: function () {
var checkStatus = table.checkStatus('menuList'),
data = checkStatus.data;
if (data.length != 1) {
layer.msg("请选择编辑的菜单");
return;
}
meditDlg.update(data[0]);
},
//常用按钮
btnCommon: function () {
var checkStatus = table.checkStatus('mainList')
, data = checkStatus.data;
if (data.length != 1) {
layer.alert("请选择编辑的行,且同时只能编辑一行", { icon: 2, shadeClose: true, title: "错误信息" });
return;
}
var menuId = data[0].Id;
//layer.msg('一段提示信息');
layer.open({
type: 2,
title: '常用按钮配置',
shadeClose: true,
area: ['500px', '300px'],
content: `./CommonBtn?moduleId=${menuId}`,
cancel: function (index, layero) {
app.methods.initTableMenu({ moduleId: data.Id });
}
});
},
search: function () { //搜索
app.methods.initTableMain({ key: $('#key').val() });
},
btnRefresh: function () {
app.methods.initTableMain();
}
};
$('.toolList .layui-btn').on('click', function () {
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
var IconNameindex;
var IconInputObj;
$('.IconName').on('dblclick', function () {
IconInputObj = this;
IconNameindex = layer.open({
maxmin: true,
title: "图标选择",
area: ["500px", "400px"],
type: 1,
content: $('#divIconNameEdit'),
success: function (layero, index) {
layer.full(index);
}
});
});
$('#mfromIconNameEdit .iconfont-list .icon').on('click', function () {
var type = $(this).next().next().html();
$(IconInputObj).val("&" + type.replace("&", ""));
layer.close(IconNameindex);
});
var Classindex;
var ClassInputObj;
$('.Class').on('dblclick', function () {
ClassInputObj = this;
Classindex = layer.open({
maxmin: true,
title: "样式选择",
area: ["500px", "400px"],
type: 1,
content: $('#divClassEdit'),
success: function (layero, index) {
layer.full(index);
}
});
});
$('#mfromClassEdit .iconfont-list .layui-btn').on('click', function () {
var type = $(this).next().html();
$(ClassInputObj).val(type);
layer.close(Classindex);
});
//监听页面主按钮操作 end
})