From b927450c52d30866976f1ab0f5790bd0c4175cb7 Mon Sep 17 00:00:00 2001
From: kongdeqiang <123456>
Date: 星期四, 17 十月 2024 08:45:33 +0800
Subject: [PATCH] feat: 手机号查询逻辑修改

---
 src/components/page/street/index.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/page/street/index.vue b/src/components/page/street/index.vue
index 2ebc0d9..f392c6c 100644
--- a/src/components/page/street/index.vue
+++ b/src/components/page/street/index.vue
@@ -151,14 +151,14 @@
                 this.loadSelect();
             },
             loadSelect(){
-                this.$byutil.postData(this, this.$systemconfig.basePath + '/ffzf/street/findList', {}, res => {
-                    this.select3 = res.data.list2
+                this.$byutil.getData(this, this.$systemconfig.basePath + '/ffzf/street/findList2', {}, res => {
+                    this.select3 = res.data
                 })
             },
             streetEdit(id){
                 this.flag2 = true;
                 this.roadId = id;
-                this.$byutil.postData(this, this.$systemconfig.basePath + '/ffzf/street/findById', {id:id,type:0}, res => {
+                this.$byutil.getData(this, this.$systemconfig.basePath + '/ffzf/street/findById', {id:id,type:0}, res => {
                     this.table2 = res.data;
                 })
             },

--
Gitblit v1.9.1