diff --git a/Web/src/pages/business/houseprojectinfo/form.vue b/Web/src/pages/business/houseprojectinfo/form.vue index a7110b8..67f82aa 100644 --- a/Web/src/pages/business/houseprojectinfo/form.vue +++ b/Web/src/pages/business/houseprojectinfo/form.vue @@ -10,9 +10,9 @@
- + - + @@ -43,7 +43,7 @@ export default { data() { return { /** 表单数据 */ - form: {}, + form: { areaId: '' }, /** 验证格式 */ rules: { /* ... */ @@ -96,9 +96,10 @@ export default { ...defaultForm, ...params.record, /** 在此处添加其他默认数据转换 */ - areaCode: areaCode, + areaId: areaCode[3], /* ... */ }); + this.areaCode = areaCode; }, /**