From 70a0c024b6141bfdfe56c1f9ca1cbd537bac7c03 Mon Sep 17 00:00:00 2001 From: danshihao Date: Mon, 17 Jun 2024 09:17:14 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90update=E3=80=91=E6=A0=87=E5=87=86?= =?UTF-8?q?=E4=B8=BB=E8=AE=A1=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../standardMasterPlan/modules/StandardMasterPlanModal.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/standardRegulationLibrary/standardMasterPlan/modules/StandardMasterPlanModal.vue b/src/views/standardRegulationLibrary/standardMasterPlan/modules/StandardMasterPlanModal.vue index 3b43840..dd6a660 100644 --- a/src/views/standardRegulationLibrary/standardMasterPlan/modules/StandardMasterPlanModal.vue +++ b/src/views/standardRegulationLibrary/standardMasterPlan/modules/StandardMasterPlanModal.vue @@ -50,7 +50,8 @@ @@ -724,7 +725,7 @@ export default { this.confirmLoading = true getStandardMasterPlanById({ id: this.model.id }).then(res => { if (res.success) { - this.model = res.result.lawsStandardMasterPlan + this.model = res.result.lawsStandardMasterPlanVO this.data = res.result.lawsStandardMasterPlanSublistList this.$nextTick(() => { this.form.setFieldsValue({ @@ -755,7 +756,7 @@ export default { this.form.validateFields((err, values) => { if (!err) { const params = {} - params.lawsStandardMasterPlan = Object.assign({}, this.model, values.base) + params.lawsStandardMasterPlanVO = Object.assign({}, this.model, values.base) params.lawsStandardMasterPlanSublistList = this.data.map((_, index) => { const result = Object.assign({}, _, values.data[index]) if (!result.type) {