TaskDetail.js
4.45 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
layui.config({
base: "/js/"
}).use(['form', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table', 'hhweb', 'utils', '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 = 'task';
var TableName = 'TaskDetail';
var vm = new Vue({
el: '#modifyForm'
});
var vmq = new Vue({
el: '#panelSearch',
data: {
}
});
var mainList = {
NoData: function () {
return "<div id='background' style='width:100%;height:100%;background-image:url(../../imagesData.png);background-repeat:no-repeat;background-size:cover;'>.</div>"
},
mainList: function () {
table.reload('mainList', {
url: "/" + AreaName + "/" + TableName + "/Load"
, method: "post"
, text: { none: this.NoData() }
, done: function (res, curr, count) {
if (curr > 1 && res.data.length == 0) {
table.reload('mainList', {
page: { curr: 1 }// 修改页码
, text: { none: mainList.NoData() }
});
}
}
});
}
};
//编辑
var EditInfo = function (tabledata) {
data = tabledata;
vm.$set('$data', data);
//表单修改时填充需修改的数据
var list = {};
$('.ClearSelector_' + TableName).each(function () {
var selDom = ($(this));
if ($(selDom)[0].name.search("q") == -1) {
list[$(selDom)[0].name] = data[$(selDom)[0].name] + "";
}
});
//表单修改时填充需修改的数据
form.val('modifyForm', list);
};
var selfbtn = {
//自定义按钮
};
var selector = {
'BusinessType': {
SelType: "FromDict",
SelFrom: "businessType",
SelModel: "BusinessType",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='BusinessType']"), $("[name='qBusinessType']")]
},
'FirstStatus': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "FirstStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='FirstStatus']"), $("[name='qFirstStatus']")]
},
'LastStatus': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "LastStatus",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='LastStatus']"), $("[name='qLastStatus']")]
},
'Status': {
SelType: "FromDict",
SelFrom: "taskStatus",
SelModel: "Status",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='Status']")]
},
'TaskType': {
SelType: "FromDict",
SelFrom: "taskType",
SelModel: "TaskType",
SelLabel: "DictLabel",
SelValue: "DictValue",
Dom: [$("[name='TaskType']")]
},
'Station': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "Station",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='Station']"), $("[name='qStation']")]
},
'SourceLocation': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "SourceLocation",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='SourceLocation']"), $("[name='qSourceLocation']")]
},
'DestinationLocation': {
SelType: "FromUrl",
SelFrom: "/general/Station/Load",
SelModel: "DestinationLocation",
SelLabel: "Name",
SelValue: "Code",
Dom: [$("[name='DestinationLocation']"), $("[name='qDestinationLocation']")]
},
};
var vml = new Array({
vm: vm,
vmq: vmq,
});
Universal.BindSelector($, form, vml, selector);
Universal.mmain(AreaName, TableName, table, layer, element, laydate, $, vm, vmq, EditInfo, selfbtn, mainList, form);
});