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 EquipmentInfo = {
12         tableId: "equipmentInfoTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     EquipmentInfo.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'id', hide: true, title: '主键id'},
22             {field: 'equipmentNo', sort: true, title: '设备编号'},
23             {field: 'equipmentName', sort: true, title: '设备名称'},
24             {field: 'workshopCode', sort: true, title: '车间编号'},
25             {field: 'productionLineCode', sort: true, title: '产线编号'},
26             {field: 'locationCode', sort: true, title: '工位编号'},
27             {field: 'equipmentType', sort: true, title: '设备类型'},
28             {field: 'equipmentModel', sort: true, title: '规格型号'},
29
30
31             {field: 'supplierCode', sort: true, title: '供应商编号'},
32          /*   {field: 'spareField1', sort: true, title: '预留字段1'},
33             {field: 'spareField2', sort: true, title: '预留字段2'},
34             {field: 'spareField3', sort: true, title: '预留字段3'},
35             {field: 'spareField4', sort: true, title: '预留字段4'},*/
36             {field: 'remark', sort: true, title: '备注'},
37        /*     {field: 'createUser', sort: true, title: '创建用户'},
38             {field: 'createTime', sort: true, title: '创建时间'},
39             {field: 'updateUser', sort: true, title: '更改用户'},
40             {field: 'updateTime', sort: true, title: '更改时间'},*/
41             {align: 'center', toolbar: '#tableBar', title: '操作'}
42         ]];
43     };
44
45     /**
46      * 点击查询按钮
47      */
48     EquipmentInfo.search = function () {
49         var queryData = {};
50         queryData['equipmentNo'] = $("#equipmentNo").val();
51         queryData['equipmentName'] = $("#equipmentName").val();
52
53         table.reload(EquipmentInfo.tableId, {
54             where: queryData, page: {curr: 1}
55         });
56     };
57
58     /**
59      * 跳转到添加页面
60      */
61     EquipmentInfo.jumpAddPage = function () {
62         window.location.href = Feng.ctxPath + '/equipmentInfo/add'
63     };
64
65     /**
66     * 跳转到编辑页面
67     *
68     * @param data 点击按钮时候的行数据
69     */
70     EquipmentInfo.jumpEditPage = function (data) {
71         window.location.href = Feng.ctxPath + '/equipmentInfo/edit?id=' + data.id
72     };
73
74     /**
75      * 导出excel按钮
76      */
77     EquipmentInfo.exportExcel = function () {
78         var checkRows = table.checkStatus(EquipmentInfo.tableId);
79         if (checkRows.data.length === 0) {
80             Feng.error("请选择要导出的数据");
81         } else {
82             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
83         }
84     };
85
86     $("#btnExpAll").click(function () {
87         var queryData = {};
88         queryData['equipmentNo'] = $('#equipmentNo').val();
89         queryData['equipmentName'] = $('#equipmentName').val();
90         $.ajax({
91             type: "POST",
92             url: Feng.ctxPath + '/equipmentInfo/exportTable',
93             data: queryData,
94             success : function (result) {
95                 table.exportFile(tableResult.config.id, result.data, 'xls');
96             }
97         });
98     });
99
100     /**
101      * 点击删除
102      *
103      * @param data 点击按钮时候的行数据
104      */
105     EquipmentInfo.onDeleteItem = function (data) {
106         var operation = function () {
107             var ajax = new $ax(Feng.ctxPath + "/equipmentInfo/delete", function (data) {
108                 Feng.success("删除成功!");
109                 table.reload(EquipmentInfo.tableId);
110             }, function (data) {
111                 Feng.error("删除失败!" + data.responseJSON.message + "!");
112             });
113             ajax.set("id", data.id);
114             ajax.start();
115         };
116         Feng.confirm("是否删除?", operation);
117     };
118
119     // 渲染表格
120     var tableResult = table.render({
121         elem: '#' + EquipmentInfo.tableId,
122         url: Feng.ctxPath + '/equipmentInfo/list',
123         toolbar: '#toolbarDemo',
124         page: true,
125         height: "full-158",
126         cellMinWidth: 100,
127         cols: EquipmentInfo.initColumn()
128     });
129
130     // 搜索按钮点击事件
131     $('#btnSearch').click(function () {
132         EquipmentInfo.search();
133     });
134
135     // 添加按钮点击事件
136     $('#btnAdd').click(function () {
137
138     EquipmentInfo.jumpAddPage();
139
140     });
141
142     // 导出excel
143     $('#btnExp').click(function () {
144         EquipmentInfo.exportExcel();
145     });
146
147     // 工具条点击事件
148     table.on('tool(' + EquipmentInfo.tableId + ')', function (obj) {
149         var data = obj.data;
150         var layEvent = obj.event;
151
152         if (layEvent === 'edit') {
153             EquipmentInfo.jumpEditPage(data);
154         } else if (layEvent === 'delete') {
155             EquipmentInfo.onDeleteItem(data);
156         }
157     });
158 });