Commit 1fa2044c authored by Mac's avatar Mac

发圈页面的处理

parent a84cd73c
......@@ -107,7 +107,7 @@
</view>
</view>
</view>
<view class="sku-box u-skeleton-rect" style="align-items: flex-start;" @click="goCoiling(g.friendUrl)">
<view class="sku-box u-skeleton-rect" style="align-items: flex-start;" v-if="g.friendUrl!=null && g.friendUrl!=''" @click="goCoiling(g.friendUrl)">
<view class="label" style="margin-top: 5px;">发圈</view>
<view class="content" style="display: flex;flex-direction: column">
......
......@@ -195,7 +195,7 @@
<u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="0" :margin-bottom="0" bg-color="#fff" />
</view>
</scroll-view>
<tabbar></tabbar>
<tabbar v-if="showtab==true"></tabbar>
<auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth="gbAuth"></auth>
<u-popup v-model="showDialog" mode="center" :mask-close-able="false" custom-style="padding:0;background:none;">
<view style="position: relative;">
......@@ -260,6 +260,7 @@
qrHeight: 160,
showDialog: false,
paddingBottm: "0px",
showtab:true,
};
},
components: {
......@@ -283,10 +284,7 @@
uni.setNavigationBarTitle({
title: this.pageTitle,
});
setTimeout(() => {
this.getTabsHeight();
this.getHeadHeight();
}, 1000);
},
onLoad(option) {
console.log(option)
......@@ -295,7 +293,17 @@
}
if(option && option.GoodsId){
this.conMsg.GoodsId = option.GoodsId;
this.showtab = false
}
if(this.showtab==true){
setTimeout(()=>{
this.getTabsHeight();
},1000)
}
setTimeout(() => {
this.getHeadHeight();
}, 1000);
this.getList();
this.u = uni.getStorageSync("mall_UserInfo");
},
......@@ -393,6 +401,7 @@
this.dataThird = item.children;
this.active3 = -1;
this.conMsg.CateId = item.Id;
this.conMsg.pageIndex = 1
this.getContent();
this.getChang();
},
......@@ -402,6 +411,7 @@
this.active3 = index;
this.show = false;
this.conMsg.CateId = item.Id;
this.conMsg.pageIndex = 1
this.getContent();
this.getChang();
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment