|
|
@@ -174,62 +174,62 @@
|
|
174
|
174
|
return
|
|
175
|
175
|
}
|
|
176
|
176
|
|
|
177
|
|
- if (this.clickKey === 39) {
|
|
|
177
|
+ if (this.clickKey === 39) { // 39 退回(审核员)
|
|
178
|
178
|
const addParams = {
|
|
179
|
179
|
reason: this.cbreason,
|
|
180
|
180
|
iszb: 1,
|
|
181
|
181
|
ids: this.wid
|
|
182
|
182
|
}
|
|
183
|
183
|
this.workOrderContent("WorkOrder/SubReloadWorkOrder", addParams)
|
|
184
|
|
- } else if (this.clickKey === 38) {
|
|
|
184
|
+ } else if (this.clickKey === 38) { // 38退回
|
|
185
|
185
|
const addParams = {
|
|
186
|
186
|
reason: this.cbreason,
|
|
187
|
187
|
workorderid: this.wid
|
|
188
|
188
|
}
|
|
189
|
189
|
this.workOrderContent("WorkOrder/RefuseWorkOrder", addParams)
|
|
190
|
|
- } else if (this.auditPlaceholder === '请输入审核通过并转办原因') {
|
|
|
190
|
+ } else if (this.clickKey === 53) { // 53审核通过转办
|
|
191
|
191
|
this.toExamineWorkOrder(2)
|
|
192
|
|
- } else if (this.auditPlaceholder === '请输入审核不通过原因') {
|
|
|
192
|
+ } else if (this.clickKey === 52) { // 52审核不通过
|
|
193
|
193
|
this.toExamineWorkOrder(1)
|
|
194
|
|
- } else if (this.auditPlaceholder === '请输入申请延时原因') {
|
|
|
194
|
+ } else if (this.clickKey === 14) { // 延时申请14
|
|
195
|
195
|
const addParams = {
|
|
196
|
196
|
reason: this.cbreason,
|
|
197
|
197
|
workorderid: this.wid,
|
|
198
|
198
|
newlimittime: this.days
|
|
199
|
199
|
}
|
|
200
|
200
|
this.workOrderContent("WorkOrder/DelayWorkOrder", addParams)
|
|
201
|
|
- } else if (this.auditPlaceholder === '请输入驳回重办原因') {
|
|
|
201
|
+ } else if (this.clickKey === 32) { // 驳回重办32
|
|
202
|
202
|
const addParams = {
|
|
203
|
203
|
reason: this.cbreason,
|
|
204
|
204
|
id: this.wid
|
|
205
|
205
|
}
|
|
206
|
206
|
this.workOrderContent("WorkOrder/RejReloadWorkOrder", addParams)
|
|
207
|
|
- } else if (this.auditPlaceholder === '请输入回退原因') {
|
|
|
207
|
+ } else if (this.clickKey === 21) { // 回退 21
|
|
208
|
208
|
const addParams = {
|
|
209
|
209
|
backreason: this.cbreason,
|
|
210
|
210
|
workorderid: this.wid
|
|
211
|
211
|
}
|
|
212
|
212
|
this.workOrderContent("WorkOrder/ReturnWorkOrder", addParams)
|
|
213
|
|
- } else if (this.auditPlaceholder === '请输入转督办原因') {
|
|
|
213
|
+ } else if (this.clickKey === 29) { // 转督办29
|
|
214
|
214
|
const addParams = {
|
|
215
|
215
|
overseeopinion: this.cbreason,
|
|
216
|
216
|
workorderid: this.wid,
|
|
217
|
217
|
type: 1
|
|
218
|
218
|
}
|
|
219
|
219
|
this.workOrderContent("WorkOrder/RemindWorkOrder", addParams)
|
|
220
|
|
- } else if(this.auditPlaceholder === '请输入提交重办原因') {
|
|
|
220
|
+ } else if(this.clickKey === 31) { // 提交重办31
|
|
221
|
221
|
const addParams = {reason: this.cbreason,ids: this.wid,iszb: 1}
|
|
222
|
222
|
this.workOrderContent("WorkOrder/SubReloadWorkOrder",addParams)
|
|
223
|
|
- }else if(this.auditPlaceholder === '请输入省平台申请延时原因') {
|
|
|
223
|
+ }else if(this.clickKey === 48) { // 省平台申请延时48
|
|
224
|
224
|
const addParams = {reason: this.cbreason,workorderid: this.wid,newlimittime: this.days,type: 0,}
|
|
225
|
225
|
this.workOrderContent("Affairs/DelayWorkOrder",addParams)
|
|
226
|
|
- }else if(this.auditPlaceholder === '请输入推送意见') {
|
|
|
226
|
+ }else if(this.clickKey === 49) { // 上报 49
|
|
227
|
227
|
const addParams = {content: this.cbreason,workorderid: this.wid}
|
|
228
|
228
|
this.workOrderContent("Affairs/PhshWorkOrder",addParams)
|
|
229
|
|
- }else if(this.auditPlaceholder === '请输入拒收原因') {
|
|
|
229
|
+ }else if(this.clickKey === 26) { // 拒收26
|
|
230
|
230
|
const addParams = {reason: this.cbreason,workorderid: this.wid}
|
|
231
|
231
|
this.workOrderContent("WorkOrder/RefuseWorkOrder",addParams)
|
|
232
|
|
- }else if(this.auditPlaceholder === '请输入拒绝原因') {
|
|
|
232
|
+ }else if(this.clickKey === 35) { // 拒绝35
|
|
233
|
233
|
const addParams = {reason: this.cbreason,workorderid: this.wid}
|
|
234
|
234
|
this.workOrderContent("WorkOrder/RejectWorkOrder",addParams)
|
|
235
|
235
|
}
|