cl
2024-01-23 6dadf36ef118fbb3b2cd5aca94cde88e29fb55dc
提交 | 用户 | 时间
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 CollectionParamConf = {
12         tableId: "collectionParamConfTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     CollectionParamConf.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'id', hide: true, title: '主键id'},
22             {field: 'paramCode', sort: true, title: '参数编码', width: 125},
23             {field: 'paramName', sort: true, title: '参数名称', width: 125},
24             {field: 'productionLine', sort: true, title: '产线编号', width: 125},
25             {field: 'locationCode', sort: true, title: '工位编号', width: 125},
26            /* {field: 'equipmentNo', sort: true, title: '设备编号', width: 125},*/
27             {field: 'dataType', sort: true, title: '数据类型', width: 125},
28             {field: 'productCode', sort: true, title: '产品编码', width: 125},
29             {field: 'gatherAddress', sort: true, title: '采集地址', width: 160},
30             {field: 'gatherSequence', sort: true, title: '采集顺序', width: 125},
31             {field: 'unit', sort: true, title: '单位', width: 125},
32             {field: 'paramUpper', sort: true, title: '上限值', width: 125},
33             {field: 'paramLower', sort: true, title: '下限值'},
34             {field: 'paramCentral', sort: true, title: '中心值'},
35             /* {field: 'remarks', sort: true, title: '备注'},
36              {field: 'createUser', sort: true, title: '创建用户', width: 125},*/
37             {field: 'createTime', sort: true, title: '创建时间',minWidth:160},
38            /* {field: 'updateUser', sort: true, title: '更改用户', width: 125},*/
39             {field: 'updateTime', sort: true, title: '更改时间',minWidth:160},
40             {align: 'center', toolbar: '#tableBar', title: '操作', width: 125}
41         ]];
42     };
43
44     /**
45      * 点击查询按钮
46      */
47     CollectionParamConf.search = function () {
48         var queryData = {};
49         queryData['paramCode'] = $("#paramCode").val();
50         queryData['productionLine'] = $("#productionLine").val();
51         queryData['equipmentNo'] = $("#equipmentNo").val();
52         queryData['locationCode'] = $("#locationCode").val();
53         table.reload(CollectionParamConf.tableId, {
54             where: queryData, page: {curr: 1}
55         });
56     };
57
58     /**
59      * 弹出添加对话框
60      */
61     CollectionParamConf.openAddDlg = function () {
62         window.location.href = Feng.ctxPath + '/collectionParamConf/add'
63     };
64
65      /**
66       * 点击编辑
67       *
68       * @param data 点击按钮时候的行数据
69       */
70       CollectionParamConf.openEditDlg = function (data) {
71           window.location.href = Feng.ctxPath + '/collectionParamConf/edit?id=' + data.id
72       };
73
74
75     /**
76      * 导出excel按钮
77      */
78     CollectionParamConf.exportExcel = function () {
79         var checkRows = table.checkStatus(CollectionParamConf.tableId);
80         if (checkRows.data.length === 0) {
81             Feng.error("请选择要导出的数据");
82         } else {
83             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
84         }
85     };
86
87     /**
88      * 点击删除
89      *
90      * @param data 点击按钮时候的行数据
91      */
92     CollectionParamConf.onDeleteItem = function (data) {
93         var operation = function () {
94             var ajax = new $ax(Feng.ctxPath + "/collectionParamConf/delete", function (data) {
95                 Feng.success("删除成功!");
96                 table.reload(CollectionParamConf.tableId);
97             }, function (data) {
98                 Feng.error("删除失败!" + data.responseJSON.message + "!");
99             });
100             ajax.set("id", data.id);
101             ajax.start();
102         };
103         Feng.confirm("是否删除?", operation);
104     };
105
106     // 渲染表格
107     var tableResult = table.render({
108         elem: '#' + CollectionParamConf.tableId,
109         url: Feng.ctxPath + '/collectionParamConf/list',
110         page: true,
111         height: "full-158",
112         cellMinWidth: 100,
113         cols: CollectionParamConf.initColumn()
114     });
115
116     // 搜索按钮点击事件
117     $('#btnSearch').click(function () {
118         CollectionParamConf.search();
119     });
120
121     // 添加按钮点击事件
122     $('#btnAdd').click(function () {
123
124     CollectionParamConf.openAddDlg();
125
126     });
127
128     // 导出excel
129     $('#btnExp').click(function () {
130         CollectionParamConf.exportExcel();
131     });
132
133     // 工具条点击事件
134     table.on('tool(' + CollectionParamConf.tableId + ')', function (obj) {
135         var data = obj.data;
136         var layEvent = obj.event;
137
138         if (layEvent === 'edit') {
139             CollectionParamConf.openEditDlg(data);
140         } else if (layEvent === 'delete') {
141             CollectionParamConf.onDeleteItem(data);
142         }
143     });
144 });