From 99ac355704b1a9cb6931a20bc23f7a6cfbb479a7 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Tue, 2 Sep 2025 11:34:53 +0800 Subject: [PATCH] v1.9 解决商铺出租按手机号查询bug --- src/components/room/bindOwnerShops.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/room/bindOwnerShops.vue b/src/components/room/bindOwnerShops.vue index 6b691e8..557e86d 100644 --- a/src/components/room/bindOwnerShops.vue +++ b/src/components/room/bindOwnerShops.vue @@ -137,7 +137,7 @@ export default { async loadOwnerInfo() { if (!this.formData.tel) return - const {data,total} = await queryOwners({page:1,row:1,communityId:getCommunityId(),tel: this.formData.tel}); + const {data,total} = await queryOwners({page:1,row:1,communityId:getCommunityId(),link: this.formData.tel}); if(total>0){ this.formData.ownerName = data[0].name this.formData.ownerId = data[0].ownerId -- libgit2 0.21.4