yantian yue
2023-10-23 0d7d6a88080dc8759ef84ed5ad7875f25642df6c
提交 | 用户 | 时间
ffeba3 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 FormulaChildInfo = {
12         tableId: "formulaChildInfoTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     FormulaChildInfo.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'id', hide: true, title: 'id'},
22             {field: 'formulaCode', sort: true, title: '配方编码'},
23             {field: 'lineCode', sort: true, title: '产线'},
24             {field: 'locationCode', sort: true, title: '工位'},
25             {field: 'productCode', sort: true, title: '产品编号'},
26             {field: 'operationSteps', sort: true, title: '操作内容'},
27             {field: 'techRequirement', sort: true, title: '技术要求'},
28             {field: 'operationType', sort: true, title: '类型'},
29             {field: 'stepSort', sort: true, title: '排序'},
30             {field: 'paramCode', sort: true, title: '参数编码'},
31             {field: 'materialCode', sort: true, title: '物料编码'},
32             {field: 'picture', sort: true, title: '图片'},
33             {field: 'remarks', sort: true, title: '备注'},
34             {field: 'createUser', sort: true, title: '创建用户'},
35             {field: 'createTime', sort: true, title: '创建时间'},
36             {field: 'updateUser', sort: true, title: '更改用户'},
37             {field: 'updateTime', sort: true, title: '更改时间'},
38             {fixed: 'right',width: 125, minWidth: 125, align: 'center', toolbar: '#tableBar', title: '操作'}
39         ]];
40     };
41
42     /**
43      * 点击查询按钮
44      */
45     FormulaChildInfo.search = function () {
46         var queryData = {};
47
48         queryData['formulaCode'] = $('#formulaCode').val();
49         queryData['lineCode'] = $('#lineCode').val();
50         queryData['locationCode'] = $('#locationCode').val();
51         queryData['productCode'] = $('#productCode').val();
52         queryData['materialCode'] = $('#materialCode').val();
53
54         table.reload(FormulaChildInfo.tableId, {
55             where: queryData, page: {curr: 1}
56         });
57     };
58
59     /**
60      * 跳转到添加页面
61      */
62     FormulaChildInfo.jumpAddPage = function () {
63         func.open({
64             height: 650,
65             title: '添加配方配置信息',
66             content: Feng.ctxPath + '/formulaChildInfo/add?formulaInfoCode=' + $("#formulaInfoCode").val(),
67             tableId: FormulaChildInfo.tableId,
68         });
69         // window.location.href = Feng.ctxPath + '/formulaChildInfo/add'
70     };
71
72     /**
73     * 跳转到编辑页面
74     *
75     * @param data 点击按钮时候的行数据
76     */
77     FormulaChildInfo.jumpEditPage = function (data) {
78         func.open({
79             height: 650,
80             title: 'BOM信息',
81             content: Feng.ctxPath + '/formulaChildInfo/edit?id=' + data.id,
82             tableId: FormulaChildInfo.tableId,
83         });
84         // window.location.href = Feng.ctxPath + '/formulaChildInfo/edit?id=' + data.id
85     };
86
87     /**
88      * 导出excel按钮
89      */
90     FormulaChildInfo.exportExcel = function () {
91         var checkRows = table.checkStatus(FormulaChildInfo.tableId);
92         if (checkRows.data.length === 0) {
93             Feng.error("请选择要导出的数据");
94         } else {
95             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
96         }
97     };
98
99     /**
100      * 点击删除
101      *
102      * @param data 点击按钮时候的行数据
103      */
104     FormulaChildInfo.onDeleteItem = function (data) {
105         var operation = function () {
106             var ajax = new $ax(Feng.ctxPath + "/formulaChildInfo/delete", function (data) {
107                 Feng.success("删除成功!");
108                 table.reload(FormulaChildInfo.tableId);
109             }, function (data) {
110                 Feng.error("删除失败!" + data.responseJSON.message + "!");
111             });
112             ajax.set("id", data.id);
113             ajax.start();
114         };
115         Feng.confirm("是否删除?", operation);
116     };
117
118     var queryData = {};
119     queryData['formulaCode'] = $('#formulaInfoCode').val();
120     // 渲染表格
121     var tableResult = table.render({
122         elem: '#' + FormulaChildInfo.tableId,
123         url: Feng.ctxPath + '/formulaChildInfo/list',
124         page: true,
125         height: "full-158",
126         cellMinWidth: 100,
127         where: queryData,
128         cols: FormulaChildInfo.initColumn()
129     });
130
131     // 关闭页面
132     $('#btnBack').click(function () {
133         window.location.href = Feng.ctxPath + "/formulaInfo";
134     });
135
136     // 搜索按钮点击事件
137     $('#btnSearch').click(function () {
138         FormulaChildInfo.search();
139     });
140
141     // 添加按钮点击事件
142     $('#btnAdd').click(function () {
143
144     FormulaChildInfo.jumpAddPage();
145
146     });
147
148     // 导出excel
149     $('#btnExp').click(function () {
150         FormulaChildInfo.exportExcel();
151     });
152
153     // 工具条点击事件
154     table.on('tool(' + FormulaChildInfo.tableId + ')', function (obj) {
155         var data = obj.data;
156         var layEvent = obj.event;
157
158         if (layEvent === 'edit') {
159             FormulaChildInfo.jumpEditPage(data);
160         } else if (layEvent === 'delete') {
161             FormulaChildInfo.onDeleteItem(data);
162         }
163     });
164 });