EquipmentStatusLog.js
3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
layui.config({
base: "/js/"
}).use(['form', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table', 'hhweb', 'Universal'], function () {
var form = layui.form,
layer = layui.layer,
element = layui.element,
laydate = layui.laydate,
$ = layui.jquery,
table = layui.table,
hhweb = layui.hhweb,
Universal = layui.Universal;
var AreaName = 'equipment';
var TableName = 'EquipmentStatusLog';
var vm = new Vue({
el: '#modifyForm',
data: {
"EquipmentId": "",
"Status": "",
"HoldTime": ""
}
});
var vmq = new Vue({
el: '#panelSearch',
data: {
}
});
hhweb.Config = {
'CreateTime': vm,
'UpdateTime': vm,
'qCreateTime': vmq,
'qUpdateTime': vmq,
};
var mainList = {
Render: function () {
var cols_arr = [[
{ checkbox: true, fixed: true }
, {field:'Id', width:80, title: 'Id' }
, { field: 'EquipmentId', width: 150, title: '设备编号', templet: function (d) { return GetLabel('EquipmentId', 'id', 'name', d.EquipmentId) } }
, { field: 'Status', width: 150, title: '设备状态', templet: function (d) { return GetLabel('Status', 'DictValue', 'DictLabel', d.Status) } }
, {field:'HoldTime', width:150, title: '持续时间(min)' }
, {field:'CreateTime', width:150, title: '建立时间' }
, {field:'CreateBy', width:150, title: '建立者' }
, {field:'UpdateTime', width:150, title: '更新时间' }
, {field:'UpdateBy', width:150, title: '更新者' }
]];
mainList.Table = table.render({
elem: '#mainList'
, url: "/" + AreaName + "/" + TableName + "/Load"
, method: "post"
, page: true //开启分页
, cols: hhweb.ColumnSetting('mainList', cols_arr)
, id: 'mainList'
, limit: 20
, limits: [20, 50, 100, 200, 500, 1000]
, defaultToolbar: ['filter']
, toolbar: '#toolbarTable'
, height: 'full-1'
, cellMinWidth: 80
, size: 'sm'
, done: function (res) { }
});
return mainList.Table;
},
Load: function () {
if (mainList.Table == undefined) {
mainList.Table = this.Render();
return;
}
mainList.Table.reload('mainList', {});
}
};
//编辑
var EditInfo = function (tabledata) {
vm.$set("$data", tabledata);
form.val("modifyForm", tabledata);
vm.$nextTick(() => {
var list = {};
$(".ClearSelector_" + TableName).each(function () {
var selDom = ($(this));
if (!$(selDom)[0].name.startsWith("q")) {
list[$(selDom)[0].name] = tabledata[$(selDom)[0].name] + "";
}
});
form.val("modifyForm", list);
});
};
var selfbtn = {
//自定义按钮
};
var selector = {
'EquipmentId': {
SelType: "FromUrl",
SelFrom: "/equipment/Equipment/Load",
SelModel: "EquipmentId",
SelLabel: "name",
SelValue: "id",
Dom: [$("[name='EquipmentId']"), $("[name='qEquipmentId']")]
}, 'Status': {
SelType: "FromDict",
SelFrom: "EquipmentStatus",
SelModel: "Status",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='Status']"), $("[name='qStatus']")]
},
};
var vml = new Array({
vm: vm,
vmq: vmq,
});
Universal.BindSelector(vml, selector);
Universal.mmain(AreaName, TableName, vm, vmq, EditInfo, selfbtn, mainList);
});