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