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