修改已知问题

This commit is contained in:
qq787203167
2022-05-25 14:59:03 +08:00
parent e9312d3a70
commit 1e78dae43a
5 changed files with 54 additions and 23 deletions
@@ -253,6 +253,9 @@
}
})
},
submitNoRule(callBack) {
callBack(this.formInline)
},
clickButtonToUpload(item) {
this.$refs.uploadFile.perentHandleFunc()
this.$refs.uploadFile.visible = true
@@ -222,7 +222,9 @@
this.textLoading = this.$t('terminationProcessing')
this.loading = true
this.queryBy.reviewResult = 'Termination of task'
this.completeTask({ flag: 2, operatorTime: operatorTime })
this.$refs.reviewedByThePersonInChargeRef.submitNoRule((res) => {
this.completeTask({ flag: 2, operatorTime: operatorTime, ...res })
})
},
adopt(operatorTime) {
this.$refs.reviewedByThePersonInChargeRef.submit((res) => {
@@ -241,7 +243,9 @@
} else {
this.queryBy.reviewResult = 'No rating'
}
this.completeTask({ flag: 1, operatorTime: operatorTime })
this.$refs.reviewedByThePersonInChargeRef.submitNoRule((res) => {
this.completeTask({ flag: 1, operatorTime: operatorTime, ...res })
})
},
Resubmit(operatorTime) {
this.$refs.reviewedByThePersonInChargeRef.submit((res) => {