From 84e172065fcc7fe6772d031c6c262a63e85f8efa Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Mon, 27 Dec 2021 09:31:42 +0800
Subject: [PATCH] +搜索为空return

---
 src/components/mobilePopupOur/index.vue |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/components/mobilePopupOur/index.vue b/src/components/mobilePopupOur/index.vue
index cc212df..92e36be 100644
--- a/src/components/mobilePopupOur/index.vue
+++ b/src/components/mobilePopupOur/index.vue
@@ -257,6 +257,9 @@
         },
         that = this;
       getListSearch(val).then((res) => {
+        if (res.data.code != 200) {
+          return;
+        }
         const data = res.data.data;
         //正常获取全部数据
         let outList = [];

--
Gitblit v1.9.3