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