@@ -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>
- <!-- #endif -->
<tui-list-cell @click="pageTo({ url: '/admin/shop/password' })" class="line-cell" :hover="false" :arrow="true">
<div class="tui-title">密码修改</div>
@@ -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 });
};
@@ -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}))