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) {