admin
2024-01-08 22f70cc8b2ba603e82bba058db320dced48f9470
提交 | 用户 | 时间
71e81e 1 layui.use(['table', 'admin', 'ax', 'func'], function () {
2     var $ = layui.$;
3     var table = layui.table;
4     var $ax = layui.ax;
5     var admin = layui.admin;
6     var func = layui.func;
7
8     /**
9      * 看板配置管理
10      */
11     var KanbanConf = {
12         tableId: "kanbanConfTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     KanbanConf.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'id', hide: true, title: 'ID'},
22             {field: 'pageCode', sort: true, title: '页面编号', width: 135},
23             {field: 'ipAddress', sort: true, title: 'ip地址', width: 125},
24             // {field: 'macAddress', sort: true, title: 'MAC地址', width: 125},
25             // {field: 'workshopCode', sort: true, title: '车间编号'},
26             // {field: 'workshopName', sort: true, title: '车间名称'},
27             {field: 'lineCode', sort: true, title: '产线编号'},
28             // {field: 'lineName', sort: true, title: '产线名称'},
29             {field: 'locationCode', sort: true, title: '工位编码'},
30             // {field: 'locationName', sort: true, title: '工位名称'},
31             // {field: 'warehouseCode', sort: true, title: '仓库编号'},
32             // {field: 'warehouseName', sort: true, title: '仓库名称'},
33             {align: 'center', toolbar: '#tableBar', title: '操作', width: 125}
34         ]];
35     };
36
37     /**
38      * 点击查询按钮
39      */
40     KanbanConf.search = function () {
41         var queryData = {};
42         queryData['pageCode'] = $("#pageCode").val();
43         queryData['ipAddress'] = $("#ipAddress").val();
44         queryData['workshopCode'] = $("#workshopCode").val();
45         queryData['lineCode'] = $("#lineCode").val();
46
47         table.reload(KanbanConf.tableId, {
48             where: queryData, page: {curr: 1}
49         });
50     };
51
52     /**
53      * 跳转到添加页面
54      */
55     KanbanConf.jumpAddPage = function () {
56         window.location.href = Feng.ctxPath + '/kanbanConf/add'
57     };
58
59     /**
60     * 跳转到编辑页面
61     *
62     * @param data 点击按钮时候的行数据
63     */
64     KanbanConf.jumpEditPage = function (data) {
65         window.location.href = Feng.ctxPath + '/kanbanConf/edit?id=' + data.id
66     };
67
68     /**
69      * 导出excel按钮
70      */
71     KanbanConf.exportExcel = function () {
72         var checkRows = table.checkStatus(KanbanConf.tableId);
73         if (checkRows.data.length === 0) {
74             Feng.error("请选择要导出的数据");
75         } else {
76             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
77         }
78     };
79
80     /**
81      * 点击删除
82      *
83      * @param data 点击按钮时候的行数据
84      */
85     KanbanConf.onDeleteItem = function (data) {
86         var operation = function () {
87             var ajax = new $ax(Feng.ctxPath + "/kanbanConf/delete", function (data) {
88                 Feng.success("删除成功!");
89                 table.reload(KanbanConf.tableId);
90             }, function (data) {
91                 Feng.error("删除失败!" + data.responseJSON.message + "!");
92             });
93             ajax.set("id", data.id);
94             ajax.start();
95         };
96         Feng.confirm("是否删除?", operation);
97     };
98
99     // 渲染表格
100     var tableResult = table.render({
101         elem: '#' + KanbanConf.tableId,
102         url: Feng.ctxPath + '/kanbanConf/list',
103         page: true,
104         height: "full-158",
105         cellMinWidth: 100,
106         cols: KanbanConf.initColumn()
107     });
108
109     // 搜索按钮点击事件
110     $('#btnSearch').click(function () {
111         KanbanConf.search();
112     });
113
114     // 添加按钮点击事件
115     $('#btnAdd').click(function () {
116
117     KanbanConf.jumpAddPage();
118
119     });
120
121     // 导出excel
122     $('#btnExp').click(function () {
123         KanbanConf.exportExcel();
124     });
125
126     // 工具条点击事件
127     table.on('tool(' + KanbanConf.tableId + ')', function (obj) {
128         var data = obj.data;
129         var layEvent = obj.event;
130
131         if (layEvent === 'edit') {
132             KanbanConf.jumpEditPage(data);
133         } else if (layEvent === 'delete') {
134             KanbanConf.onDeleteItem(data);
135         }
136     });
137 });