|
@@ -38,7 +38,11 @@
|
38
|
38
|
<my-image class="img" :src="item.icon"></my-image>
|
39
|
39
|
<span class="text">{{ item.name }}</span>
|
40
|
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
|
46
|
<my-image
|
43
|
47
|
class="img"
|
44
|
48
|
src="/static/icon/youxuan.png"
|
|
@@ -77,7 +81,7 @@
|
77
|
81
|
|
78
|
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
|
85
|
<wyg-bottom-tab
|
82
|
86
|
ref="tabbar"
|
83
|
87
|
:tabIndex="2"
|
|
@@ -107,6 +111,7 @@ export default {
|
107
|
111
|
showMenu: true,
|
108
|
112
|
storeStatus: -1,
|
109
|
113
|
shopId: null,
|
|
114
|
+ storeConfig: {},
|
110
|
115
|
};
|
111
|
116
|
},
|
112
|
117
|
|
|
@@ -144,6 +149,15 @@ export default {
|
144
|
149
|
this.getUserMenu();
|
145
|
150
|
this.$refs.tabbar.setIndex(2);
|
146
|
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
|
163
|
methods: {
|