懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 layui.use(['table', 'ax', 'func'], function () {
2     var $ = layui.$;
3     var table = layui.table;
4     var $ax = layui.ax;
5     var func = layui.func;
6
7     /**
8      * 字典类型表管理
9      */
10     var DictType = {
11         tableId: "dictTypeTable"
12     };
13
14     /**
15      * 初始化表格的列
16      */
17     DictType.initColumn = function () {
18         return [[
19             {type: 'checkbox'},
20             {field: 'dictTypeId', hide: true, title: '字典类型id'},
21             {
22                 field: 'name', align: "center", sort: true, title: '类型名称', templet: function (d) {
23                     var url = Feng.ctxPath + '/dict?dictTypeId=' + d.dictTypeId;
24                     return '<a style="color: #01AAED;" href="' + url + '">' + d.name + '</a>';
25                 }
26             },
27             {
28                 field: 'code', align: "center", sort: true, title: '类型编码', minWidth: 166, templet: function (d) {
29                     var url = Feng.ctxPath + '/dict?dictTypeId=' + d.dictTypeId;
30                     return '<a style="color: #01AAED;" href="' + url + '">' + d.code + '</a>';
31                 }
32             },
33             {
34                 field: 'systemFlag', align: "center", sort: true, title: '是否是系统字典', templet: function (d) {
35                     if (d.systemFlag === 'Y') {
36                         return "是";
37                     } else {
38                         return "否";
39                     }
40                 }
41             },
42             {field: 'description', align: "center", sort: true, title: '字典描述'},
43             {
44                 field: 'status', sort: true, align: "center", title: '状态', templet: function (d) {
45                     if (d.status === 'ENABLE') {
46                         return "启用";
47                     } else {
48                         return "禁用";
49                     }
50                 }
51             },
52             {field: 'createTime', align: "center", sort: true, title: '添加时间', minWidth: 161},
53             {align: 'center', toolbar: '#tableBar', title: '操作'}
54         ]];
55     };
56
57     /**
58      * 点击查询按钮
59      */
60     DictType.search = function () {
61         var queryData = {};
62         queryData['condition'] = $("#condition").val();
63         queryData['systemFlag'] = $("#systemFlag").val();
64         queryData['status'] = $("#status").val();
65         table.reload(DictType.tableId, {
66             where: queryData, page: {curr: 1}
67         });
68     };
69
70     /**
71      * 弹出添加对话框
72      */
73     DictType.openAddDlg = function () {
74         func.open({
75             height: 630,
76             title: '添加字典类型',
77             content: Feng.ctxPath + '/dictType/add',
78             tableId: DictType.tableId
79         });
80     };
81
82     /**
83      * 点击编辑
84      *
85      * @param data 点击按钮时候的行数据
86      */
87     DictType.openEditDlg = function (data) {
88         func.open({
89             height: 630,
90             title: '修改字典类型',
91             content: Feng.ctxPath + '/dictType/edit?dictTypeId=' + data.dictTypeId,
92             tableId: DictType.tableId
93         });
94     };
95
96     /**
97      * 点击删除
98      *
99      * @param data 点击按钮时候的行数据
100      */
101     DictType.onDeleteItem = function (data) {
102
103         if (data.systemFlag === 'Y') {
104             Feng.error("系统字典无法删除");
105             return;
106         }
107
108         var operation = function () {
109             var ajax = new $ax(Feng.ctxPath + "/dictType/delete", function (data) {
110                 Feng.success("删除成功!");
111                 table.reload(DictType.tableId);
112             }, function (data) {
113                 Feng.error("删除失败!" + data.responseJSON.message + "!");
114             });
115             ajax.set("dictTypeId", data.dictTypeId);
116             ajax.start();
117         };
118
119         Feng.confirm("是否删除?", operation);
120     };
121
122     // 渲染表格
123     var tableResult = table.render({
124         elem: '#' + DictType.tableId,
125         url: Feng.ctxPath + '/dictType/list',
126         page: true,
127         height: "full-98",
128         cellMinWidth: 100,
129         cols: DictType.initColumn()
130     });
131
132     // 搜索按钮点击事件
133     $('#btnSearch').click(function () {
134         DictType.search();
135     });
136
137     // 添加按钮点击事件
138     $('#btnAdd').click(function () {
139         DictType.openAddDlg();
140     });
141
142     // 工具条点击事件
143     table.on('tool(' + DictType.tableId + ')', function (obj) {
144         var data = obj.data;
145         var layEvent = obj.event;
146
147         if (layEvent === 'edit') {
148             DictType.openEditDlg(data);
149         } else if (layEvent === 'delete') {
150             DictType.onDeleteItem(data);
151         }
152     });
153 });