|
@ -198,7 +198,7 @@ let loading // 加载动画 |
|
|
export default { |
|
|
export default { |
|
|
data () { |
|
|
data () { |
|
|
return { |
|
|
return { |
|
|
source: 'tree',//来源 |
|
|
source: 'tree',//来源 |
|
|
importRoomLoading: false, |
|
|
importRoomLoading: false, |
|
|
total: 0, |
|
|
total: 0, |
|
|
pageSize: 20, |
|
|
pageSize: 20, |
|
@ -347,6 +347,8 @@ export default { |
|
|
ownerName: this.ownerName, |
|
|
ownerName: this.ownerName, |
|
|
ownerPhone: this.ownerPhone, |
|
|
ownerPhone: this.ownerPhone, |
|
|
rentFlag: this.rentFlag, |
|
|
rentFlag: this.rentFlag, |
|
|
|
|
|
purpose: this.purpose, |
|
|
|
|
|
remark: this.remark, |
|
|
sortType: this.sortType, |
|
|
sortType: this.sortType, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -541,6 +543,8 @@ export default { |
|
|
ownerName: this.ownerName, |
|
|
ownerName: this.ownerName, |
|
|
ownerPhone: this.ownerPhone, |
|
|
ownerPhone: this.ownerPhone, |
|
|
rentFlag: this.rentFlag, |
|
|
rentFlag: this.rentFlag, |
|
|
|
|
|
purpose: this.purpose, |
|
|
|
|
|
remark: this.remark, |
|
|
buildingId: this.agencyObj.id |
|
|
buildingId: this.agencyObj.id |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -619,6 +623,8 @@ export default { |
|
|
ownerName: this.ownerName, |
|
|
ownerName: this.ownerName, |
|
|
ownerPhone: this.ownerPhone, |
|
|
ownerPhone: this.ownerPhone, |
|
|
rentFlag: this.rentFlag, |
|
|
rentFlag: this.rentFlag, |
|
|
|
|
|
purpose: this.purpose, |
|
|
|
|
|
remark: this.remark, |
|
|
buildingId: '', |
|
|
buildingId: '', |
|
|
neighborHoodId: '' |
|
|
neighborHoodId: '' |
|
|
} |
|
|
} |
|
@ -799,6 +805,14 @@ export default { |
|
|
type: String, |
|
|
type: String, |
|
|
default: '', |
|
|
default: '', |
|
|
}, |
|
|
}, |
|
|
|
|
|
purpose: { |
|
|
|
|
|
type: String, |
|
|
|
|
|
default: '', |
|
|
|
|
|
}, |
|
|
|
|
|
remark: { |
|
|
|
|
|
type: String, |
|
|
|
|
|
default: '', |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|