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