From 0ec1d94a52fb878098c3dda84e72f0f32b5ab9d2 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 20 Jan 2022 14:38:38 +0800
Subject: [PATCH] +隐藏全屏弹窗的标签栏,隐藏底部最左侧按钮

---
 src/components/mobileCortrolButtom/index.vue |    2 +-
 src/styles/mobile/popup.scss                 |    4 ++++
 src/components/mobilePopupOur/index.vue      |    2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/components/mobileCortrolButtom/index.vue b/src/components/mobileCortrolButtom/index.vue
index b0bb4ff..a069530 100644
--- a/src/components/mobileCortrolButtom/index.vue
+++ b/src/components/mobileCortrolButtom/index.vue
@@ -1,7 +1,7 @@
 <template>
   <div class="m-left-mobileCortrolButtom">
     <!-- <div class="m-l-inbut" @click="mubiao"><i class="el-icon-s-help"></i></div> -->
-    <div class="m-l-inbut">
+    <div class="m-l-inbut" v-show="false">
       <!-- <i class="el-icon-s-flag"></i> -->
       <el-dropdown trigger="click" @command="handleCommand">
         <span class="el-dropdown-link icons">
diff --git a/src/components/mobilePopupOur/index.vue b/src/components/mobilePopupOur/index.vue
index e00fde2..9c8feb9 100644
--- a/src/components/mobilePopupOur/index.vue
+++ b/src/components/mobilePopupOur/index.vue
@@ -197,7 +197,7 @@
         ) {
           // 社区建筑使用该id获取具体信息
           data.forEach((item) => {
-            let icon = item.tpurl.split(",");
+            let icon = item.tpurl ? item.tpurl.split(",") : item.id;
             outList.push({
               id: item.id,
               name: item.mechanismname,
diff --git a/src/styles/mobile/popup.scss b/src/styles/mobile/popup.scss
index b1c8595..3b283b5 100644
--- a/src/styles/mobile/popup.scss
+++ b/src/styles/mobile/popup.scss
@@ -510,3 +510,7 @@
   border-radius: 5px;
   padding: 4px 10px 5px;
 }
+
+#mobilePopupOur .el-tabs__header {
+  display: none !important;
+}

--
Gitblit v1.9.3