From 7b4c2f3fd509bfabf72eebe4083c502885819cb8 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Fri, 28 Jul 2023 18:03:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/newArchives/breeding.vue | 8 +-- components/newArchives/residents.vue | 79 ++++++++++++++-------------- subpkg/newArchives/newArchives.vue | 9 ++-- 3 files changed, 51 insertions(+), 45 deletions(-) diff --git a/components/newArchives/breeding.vue b/components/newArchives/breeding.vue index 287010f..7ff488e 100644 --- a/components/newArchives/breeding.vue +++ b/components/newArchives/breeding.vue @@ -128,7 +128,7 @@ formData: { breedingList: [{ landPlan: '', //土地规划 - }] + }, ] }, rules: { @@ -143,7 +143,9 @@ }, // 新增种养殖 pushBreedingList() { - this.formData.breedingList.push({}) + this.formData.breedingList.push({ + landPlan: '', //土地规划 + }) }, // 删除种养殖 removeBreedingList(index) { @@ -162,7 +164,7 @@