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