shish 4 gadi atpakaļ
vecāks
revīzija
65d9325631

+ 1 - 1
ghsApp/src/admin/home/me.vue

@@ -79,10 +79,10 @@
             </tui-list-cell>
 
             <!-- #ifdef APP-PLUS -->
+			<!-- #endif -->            
             <tui-list-cell @click="pageTo({ url: '/pagesStore/me/cashSet' })" class="line-cell" :hover="false" :arrow="true" >
               <div class="tui-title">提现账号</div>
             </tui-list-cell>
-            <!-- #endif -->
 
             <tui-list-cell @click="pageTo({ url: '/admin/shop/password' })" class="line-cell" :hover="false" :arrow="true">
               <div class="tui-title">密码修改</div>

+ 0 - 1
ghsApp/src/api/common/index.js

@@ -43,7 +43,6 @@ export const toggleShop = data => https.post("/shop/toggle-shop", data);
 //socket链接初始化
 export const initSocket = async clientId => {
 	const st = uni.getStorageSync("token");
-
 	return https.post(`/ws/bind?token=${st}`, { clientId: clientId });
 };
 

+ 1 - 3
ghsApp/src/components/module/shopSelect.vue

@@ -62,9 +62,7 @@ export default {
     },
     computed:{
 		...mapGetters(["getMyShopInfo"]),
-        ...mapState({
-			userShopAll:state=>state.user.userShopAll
-        }),
+        ...mapState({userShopAll:state=>state.user.userShopAll}),
     },
     mounted(){
         this.shopList = this.userShopAll.map(i=>({...i,name:i.shopName}))