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     var form = layui.form;
8
9
10     /**
11      * 不良原因配置管理
12      */
13     var BadReasonConf = {
14         tableId: "badReasonConfTable"
15     };
16
17     /**
18      * 初始化表格的列
19      */
20     BadReasonConf.initColumn = function () {
21         return [[
22             {type: 'checkbox'},
23             {field: 'id', hide: true, title: '主键id'},
24             {field: 'workshopCode', sort: true, title: '车间编码',width: 120},
25             {field: 'productionLine', sort: true, title: '产线编号',width: 120},
26             {field: 'locationCode', sort: true, title: '工位编号',width: 120},
27             // {field: 'equipmentNo', sort: true, title: '设备编号'},
28             {field: 'typeCode', sort: true, title: '不良类型编码',width: 135},
29             {field: 'typeName', sort: true, title: '不良类型名称',width: 135},
30             {field: 'badCode', sort: true, title: '不良原因编码',width: 135},
31             {field: 'badDesc', sort: true, title: '不良原因',width: 140},
32             // {field: 'status', sort: true, title: '状态'},
33             {field: 'status', sort: true, templet: '#stateTpl', title: '状态'},
34             {field: 'createUser', sort: true, title: '创建用户',width: 120},
35             {field: 'createTime', sort: true, title: '创建时间',minWidth:160},
36             {field: 'updateUser', sort: true, title: '更改用户',width: 120},
37             {field: 'updateTime', sort: true, title: '更改时间',minWidth:160},
38             {align: 'center', toolbar: '#tableBar', title: '操作',width: 125}
39         ]];
40     };
41
42     /**
43      * 点击查询按钮
44      */
45     BadReasonConf.search = function () {
46         var queryData = {};
47         queryData['workshopCode'] = $("#workshopCode").val();
48         queryData['productionLine'] = $("#productionLine").val();
49         queryData['locationCode'] = $("#locationCode").val();
50
51         table.reload(BadReasonConf.tableId, {
52             where: queryData, page: {curr: 1}
53         });
54     };
55
56     /**
57      * 弹出添加对话框
58      */
59     BadReasonConf.openAddDlg = function () {
60         // func.open({
61         //     title: '添加不良原因配置',
62         //     content: Feng.ctxPath + '/badReasonConf/add',
63         //     tableId: BadReasonConf.tableId
64         // });
65         window.location.href = Feng.ctxPath + '/badReasonConf/add'
66     };
67
68      /**
69       * 点击编辑
70       *
71       * @param data 点击按钮时候的行数据
72       */
73       BadReasonConf.openEditDlg = function (data) {
74           // func.open({
75           //     title: '修改不良原因配置',
76           //     content: Feng.ctxPath + '/badReasonConf/edit?id=' + data.id,
77           //     tableId: BadReasonConf.tableId
78           // });
79           window.location.href = Feng.ctxPath + '/badReasonConf/edit?id=' + data.id
80
81       };
82
83
84     /**
85      * 导出excel按钮
86      */
87     BadReasonConf.exportExcel = function () {
88         var checkRows = table.checkStatus(BadReasonConf.tableId);
89         if (checkRows.data.length === 0) {
90             Feng.error("请选择要导出的数据");
91         } else {
92             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
93         }
94     };
95
96     form.on('switch(status)', function (obj) {
97         var id = obj.elem.value;
98         var checked = obj.elem.checked ? 1 : 0;
99         BadReasonConf.changeStatus(id, checked);
100     });
101
102     // 修改状态方法
103     BadReasonConf.changeStatus = function (id, checked) {
104         var ajax = new $ax(Feng.ctxPath + "/badReasonConf/editItem", function (data) {
105             Feng.success("修改成功!");
106         }, function (data) {
107             Feng.error("修改失败!" + data.message);
108             // table.reload(BsWorkshopInfo.tableId);
109         });
110         ajax.set("id", id);
111         ajax.set("status", checked);
112         ajax.start();
113     };
114
115     /**
116      * 点击删除
117      *
118      * @param data 点击按钮时候的行数据
119      */
120     BadReasonConf.onDeleteItem = function (data) {
121         var operation = function () {
122             var ajax = new $ax(Feng.ctxPath + "/badReasonConf/delete", function (data) {
123                 Feng.success("删除成功!");
124                 table.reload(BadReasonConf.tableId);
125             }, function (data) {
126                 Feng.error("删除失败!" + data.responseJSON.message + "!");
127             });
128             ajax.set("id", data.id);
129             ajax.start();
130         };
131         Feng.confirm("是否删除?", operation);
132     };
133
134     // 渲染表格
135     var tableResult = table.render({
136         elem: '#' + BadReasonConf.tableId,
137         url: Feng.ctxPath + '/badReasonConf/list',
138         page: true,
139         height: "full-158",
140         cellMinWidth: 100,
141         cols: BadReasonConf.initColumn()
142     });
143
144     // 搜索按钮点击事件
145     $('#btnSearch').click(function () {
146         BadReasonConf.search();
147     });
148
149     // 添加按钮点击事件
150     $('#btnAdd').click(function () {
151
152     BadReasonConf.openAddDlg();
153
154     });
155
156     // 导出excel
157     $('#btnExp').click(function () {
158         BadReasonConf.exportExcel();
159     });
160
161     // 工具条点击事件
162     table.on('tool(' + BadReasonConf.tableId + ')', function (obj) {
163         var data = obj.data;
164         var layEvent = obj.event;
165
166         if (layEvent === 'edit') {
167             BadReasonConf.openEditDlg(data);
168         } else if (layEvent === 'delete') {
169             BadReasonConf.onDeleteItem(data);
170         }
171     });
172 });