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      * bom信息管理
10      */
11     var BomInfo = {
12         tableId: "bomInfoTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     BomInfo.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             /*  {type:"numbers" ,title:'序号',width:40,fixed:'left'},*/
22             {field: 'id', hide: true, title: 'ID'},
23             {field: 'materialCode', sort: true, title: '物料编号', width: 125},
24             {field: 'materialName', sort: true, title: '物料名称', width: 200},
25             {field: 'productCode', sort: true, title: '产品编号', width: 125},
26             {field: 'productName', sort: true, title: '产品名称', width: 270},
27             {field: 'locationCode', sort: true, title: '工位编号', width: 110},
28             {field: 'locationName', sort: true, title: '工位名称', width: 270},
29             {field: 'loadingCode', sort: true, title: '扫码工位编号', width: 135},
30             // {field: 'loadingName', sort: true, title: '扫码工位名称'},
31             // {field: 'traceabilityType', sort: true, title: '追溯类型'},
32             {field: 'traceabilityType', title: '追溯类型',width: 100, templet: function (data) {if (data.traceabilityType === '1') return '编号追溯';else if (data.traceabilityType === '2') return '批次追溯'; else return '追溯';}},
33             {field: 'quantity', sort: true, title: '数量',align:'center'},
34             {field: 'remarks', sort: true, title: '备注'},
35             {align: 'center', toolbar: '#tableBar', title: '操作', width: 125}
36         ]];
37     };
38
39     /**
40      * 点击查询按钮
41      */
42     BomInfo.search = function () {
43         var queryData = {};
44         queryData['materialCode'] = $("#materialCode").val();
45         queryData['materialName'] = $("#materialName").val();
46         queryData['productCode'] = $("#productCode").val();
47         queryData['locationCode'] = $("#locationCode").val();
48         table.reload(BomInfo.tableId, {
49             where: queryData, page: {curr: 1}
50         });
51     };
52
53     /**
54      * 跳转到添加页面
55      */
56     BomInfo.jumpAddPage = function () {
57         window.location.href = Feng.ctxPath + '/bomInfo/add'
58     };
59
60     /**
61     * 跳转到编辑页面
62     *
63     * @param data 点击按钮时候的行数据
64     */
65     BomInfo.jumpEditPage = function (data) {
66         window.location.href = Feng.ctxPath + '/bomInfo/edit?id=' + data.id
67     };
68
69     /**
70      * 导出excel按钮
71      */
72     BomInfo.exportExcel = function () {
73         var checkRows = table.checkStatus(BomInfo.tableId);
74         if (checkRows.data.length === 0) {
75             Feng.error("请选择要导出的数据");
76         } else {
77             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
78         }
79     };
80
81     /**
82      * 点击删除
83      *
84      * @param data 点击按钮时候的行数据
85      */
86     BomInfo.onDeleteItem = function (data) {
87         var operation = function () {
88             var ajax = new $ax(Feng.ctxPath + "/bomInfo/delete", function (data) {
89                 Feng.success("删除成功!");
90                 table.reload(BomInfo.tableId);
91             }, function (data) {
92                 Feng.error("删除失败!" + data.responseJSON.message + "!");
93             });
94             ajax.set("id", data.id);
95             ajax.start();
96         };
97         Feng.confirm("是否删除?", operation);
98     };
99
100     // 渲染表格
101     var tableResult = table.render({
102         elem: '#' + BomInfo.tableId,
103         url: Feng.ctxPath + '/bomInfo/list',
104         toolbar: '#toolbarDemo',
105         page: true,
106         height: "full-158",
107         cellMinWidth: 80,
108         cols: BomInfo.initColumn()
109     });
110
111     // 搜索按钮点击事件
112     $('#btnSearch').click(function () {
113         BomInfo.search();
114     });
115
116     // 添加按钮点击事件
117    /* $('body').on('click', '#btnAdd', function() {*/
118     $('#btnAdd').click(function () {
119
120         BomInfo.jumpAddPage();
121
122     });
123
124     // 添加编辑点击事件
125     $('#btnEdit').click(function () {
126         var checkRows = table.checkStatus(BomInfo.tableId);
127         if (checkRows.data.length == 1) {
128             BomInfo.jumpEditPage(checkRows.data[0]);
129         } else {
130             Feng.error("请选择一条要修改的数据");
131         }
132     });
133
134     // 导出excel
135     $('#btnExp').click(function () {
136         BomInfo.exportExcel();
137     });
138
139     // 工具条点击事件
140     table.on('tool(' + BomInfo.tableId + ')', function (obj) {
141         var data = obj.data;
142         var layEvent = obj.event;
143
144         if (layEvent === 'edit') {
145             BomInfo.jumpEditPage(data);
146         } else if (layEvent === 'delete') {
147             BomInfo.onDeleteItem(data);
148         }
149     });
150 });