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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
import Api from "~/service/Api"
import commonFunctions from '~/mixin/commonFunctions.js';
export default {
mixins: [commonFunctions],
methods: {
search() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
let data = this.model;
Api.post(`/Domlc/elcsnd/search`, data).then(res => {
this.model.elcsList = res.data;
});
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
show() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
if (this.currentZcinvlstIndex === -1) {
this.$notify.error({
title: "错误",
message: "请选择一条数据!"
});
return;
}
let data = this.model.elcsList[this.currentZcinvlstIndex].inr;
Api.post(`/Domlc/elcsnd/show`, data).then(res => {
this.model.formatData = res.data.formatData;
this.model.textContext = res.data.data;
this.visiable = true;
});
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
send() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
if (this.currentZcinvlstIndex === -1) {
this.$notify.error({
title: "错误",
message: "请选择一条数据!"
});
return;
}
this.$confirm('确定发送此笔报文?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
let data = this.model.elcsList[this.currentZcinvlstIndex].inr;
Api.post(`/Domlc/elcsnd/send`, data).then(res => {
this.$alert(res.data === 0 ? '发送成功' : '发送失败', '提示', {
confirmButtonText: '确定',
dangerouslyUseHTMLString: true
});
this.model.elcsList = null;
this.currentZcinvlstIndex = -1;
});
}).catch(() => {
})
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
delect() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
if (this.currentZcinvlstIndex === -1) {
this.$notify.error({
title: "错误",
message: "请选择一条数据!"
});
return;
}
this.$confirm('确定删除此笔报文?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
let data = this.model.elcsList[this.currentZcinvlstIndex].inr;
Api.post(`/Domlc/elcsnd/delect`, data).then(res => {
this.model.elcsList = null;
this.currentZcinvlstIndex = -1;
});
}).catch(() => {
})
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
modify() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
if (this.currentZcinvlstIndex === -1) {
this.$notify.error({
title: "错误",
message: "请选择一条数据!"
});
return;
}
let id = this.model.elcsList[this.currentZcinvlstIndex].inr;
this.routerPush({
path: "/business/elcadd",
query: { id: id, }
});
this.currentZcinvlstIndex = -1;
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
details() {
// 前端检验
this.$refs["ElcsndForm"].validate((valid) => {
if (valid) {
if (this.currentZcinvlstIndex === -1) {
this.$notify.error({
title: "错误",
message: "请选择一条数据!"
});
return;
}
let id = this.model.elcsList[this.currentZcinvlstIndex].inr;
this.routerPush({
path: "/review/review-elcadd",
query: { id: id, action:"read" }
});
this.currentZcinvlstIndex = -1;
} else {
// 前端校验失败
this.$notify({
title: '失败',
message: '校验失败',
type: 'error',
});
return false;
}
});
},
handleRowClick(row) {
this.currentZcinvlstIndex = row.index
},
tableRowClassName({ row, rowIndex }) {
row.index = rowIndex;
},
}
}