From 1d1366319d42d5af8f56d0cd942edf35f88edd54 Mon Sep 17 00:00:00 2001 From: wanggongfeng <1305282856@qq.com> Date: Wed, 25 May 2022 15:07:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=BF=E5=B1=8B=E7=AE=A1=E7=90=86=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=9F=A5=E8=AF=A2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/base/community/roomTable.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/views/modules/base/community/roomTable.vue b/src/views/modules/base/community/roomTable.vue index a866b6f3c..29324579b 100644 --- a/src/views/modules/base/community/roomTable.vue +++ b/src/views/modules/base/community/roomTable.vue @@ -198,7 +198,7 @@ let loading // 加载动画 export default { data () { return { - source: 'tree',//来源 + source: 'tree',//来源 importRoomLoading: false, total: 0, pageSize: 20, @@ -347,6 +347,8 @@ export default { ownerName: this.ownerName, ownerPhone: this.ownerPhone, rentFlag: this.rentFlag, + purpose: this.purpose, + remark: this.remark, sortType: this.sortType, } @@ -541,6 +543,8 @@ export default { ownerName: this.ownerName, ownerPhone: this.ownerPhone, rentFlag: this.rentFlag, + purpose: this.purpose, + remark: this.remark, buildingId: this.agencyObj.id } @@ -619,6 +623,8 @@ export default { ownerName: this.ownerName, ownerPhone: this.ownerPhone, rentFlag: this.rentFlag, + purpose: this.purpose, + remark: this.remark, buildingId: '', neighborHoodId: '' } @@ -799,6 +805,14 @@ export default { type: String, default: '', }, + purpose: { + type: String, + default: '', + }, + remark: { + type: String, + default: '', + } } }