Browse Source

修改bug

cr 4 years ago
parent
commit
1a3ca5a897
1 changed files with 16 additions and 2 deletions
  1. 16 2
      src/pages/manage/index.vue

+ 16 - 2
src/pages/manage/index.vue

@@ -38,7 +38,11 @@
38
                     <my-image class="img" :src="item.icon"></my-image>
38
                     <my-image class="img" :src="item.icon"></my-image>
39
                     <span class="text">{{ item.name }}</span>
39
                     <span class="text">{{ item.name }}</span>
40
                 </li>
40
                 </li>
41
-                <li class="item" @click="jump('/pages/youxuan/nav')">
41
+                <li
42
+                    class="item"
43
+                    v-if="storeConfig.enableYouXuan"
44
+                    @click="jump('/pages/youxuan/nav')"
45
+                >
42
                     <my-image
46
                     <my-image
43
                         class="img"
47
                         class="img"
44
                         src="/static/icon/youxuan.png"
48
                         src="/static/icon/youxuan.png"
@@ -77,7 +81,7 @@
77
 
81
 
78
         <!-- <button class="btn" @click="layout">退出登录</button> -->
82
         <!-- <button class="btn" @click="layout">退出登录</button> -->
79
 
83
 
80
-        <div class="ver">0.5.42</div>
84
+        <div class="ver">0.5.43</div>
81
         <wyg-bottom-tab
85
         <wyg-bottom-tab
82
             ref="tabbar"
86
             ref="tabbar"
83
             :tabIndex="2"
87
             :tabIndex="2"
@@ -107,6 +111,7 @@ export default {
107
             showMenu: true,
111
             showMenu: true,
108
             storeStatus: -1,
112
             storeStatus: -1,
109
             shopId: null,
113
             shopId: null,
114
+            storeConfig: {},
110
         };
115
         };
111
     },
116
     },
112
 
117
 
@@ -144,6 +149,15 @@ export default {
144
         this.getUserMenu();
149
         this.getUserMenu();
145
         this.$refs.tabbar.setIndex(2);
150
         this.$refs.tabbar.setIndex(2);
146
         this.checkStatus();
151
         this.checkStatus();
152
+        this.api
153
+            .get(
154
+                "/Store/GetStoreConfig",
155
+                { id: this.user.storeId },
156
+                { pass: true }
157
+            )
158
+            .then((infoRes) => {
159
+                this.storeConfig = infoRes.data;
160
+            });
147
     },
161
     },
148
     // 函数
162
     // 函数
149
     methods: {
163
     methods: {