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