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