Commit 99ac355704b1a9cb6931a20bc23f7a6cfbb479a7
1 parent
1597d420
v1.9 解决商铺出租按手机号查询bug
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/room/bindOwnerShops.vue
| ... | ... | @@ -137,7 +137,7 @@ export default { |
| 137 | 137 | async loadOwnerInfo() { |
| 138 | 138 | if (!this.formData.tel) return |
| 139 | 139 | |
| 140 | - const {data,total} = await queryOwners({page:1,row:1,communityId:getCommunityId(),tel: this.formData.tel}); | |
| 140 | + const {data,total} = await queryOwners({page:1,row:1,communityId:getCommunityId(),link: this.formData.tel}); | |
| 141 | 141 | if(total>0){ |
| 142 | 142 | this.formData.ownerName = data[0].name |
| 143 | 143 | this.formData.ownerId = data[0].ownerId | ... | ... |