fix 81240
This commit is contained in:
@@ -1007,7 +1007,7 @@ export default {
|
||||
}
|
||||
} else {
|
||||
// 流程信息
|
||||
this.processInfoForm.validateFields((errors, values) => {
|
||||
this.processInfoForm.validateFields({ force: true }, (errors, values) => {
|
||||
if (!errors) {
|
||||
processInfo = Object.assign(this.processInfo, values)
|
||||
} else {
|
||||
@@ -1015,7 +1015,7 @@ export default {
|
||||
}
|
||||
})
|
||||
// 业务基本信息
|
||||
this.basicServiceInfoForm.validateFields((errors, values) => {
|
||||
this.basicServiceInfoForm.validateFields({ force: true }, (errors, values) => {
|
||||
if (!errors) {
|
||||
basicServiceInfo = Object.assign(this.basicServiceInfo, values)
|
||||
} else {
|
||||
@@ -1023,7 +1023,7 @@ export default {
|
||||
}
|
||||
})
|
||||
// 流程审批信息
|
||||
this.approvalInfoForm.validateFields((errors, values) => {
|
||||
this.approvalInfoForm.validateFields({ force: true }, (errors, values) => {
|
||||
if (!errors) {
|
||||
approvalInfo = Object.assign(this.approvalInfo, values)
|
||||
approvalInfo.finishFlag = 2 // 保存——1;提交/同意/驳回——2
|
||||
@@ -1033,7 +1033,7 @@ export default {
|
||||
})
|
||||
// 业务分派信息
|
||||
if (this.showDispatchInformation) {
|
||||
this.dispatchInfoForm.validateFields((errors, values) => {
|
||||
this.dispatchInfoForm.validateFields({ force: true }, (errors, values) => {
|
||||
if (!errors) {
|
||||
dispatchInfo = Object.assign(this.dispatchInfo, values)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user