diff --git a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue index a2b1ca0a..0a537c43 100644 --- a/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue +++ b/src/views/workCenter/standardConsultationProcess/StandardConsultationProcess.vue @@ -1094,7 +1094,9 @@ export default { */ handleAgree () { this.validatorRules.handleText.rules[0].required = false - this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + if (!this.approvalInfoForm.getFieldValue('handleText')) { + this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + } const formData = this.dealFormData() if (!formData) { return diff --git a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue index 17a72574..8c713506 100644 --- a/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue +++ b/src/views/workCenter/standardEntryOrChangeProcess/StandardEntryOrChangeProcess.vue @@ -892,7 +892,9 @@ export default { */ handleAgree () { this.validatorRules.handleText.rules[0].required = false - this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + if (!this.approvalInfoForm.getFieldValue('handleText')) { + this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + } const formData = this.dealFormData() if (!formData) { return diff --git a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue index 5dd9af17..7fb7ac3b 100644 --- a/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue +++ b/src/views/workCenter/standardProcurementProcess/StandardProcurementProcess.vue @@ -468,7 +468,9 @@ export default { */ handleAgree () { this.validatorRules.handleText.rules[0].required = false - this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + if (!this.approvalInfoForm.getFieldValue('handleText')) { + this.approvalInfoForm.setFieldsValue({ handleText: '同意' }) + } const formData = this.dealFormData() if (!formData) { return