Commit 1fa2044c authored by Mac's avatar Mac

发圈页面的处理

parent a84cd73c
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
</view> </view>
</view> </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="label" style="margin-top: 5px;">发圈</view>
<view class="content" style="display: flex;flex-direction: column"> <view class="content" style="display: flex;flex-direction: column">
......
...@@ -195,7 +195,7 @@ ...@@ -195,7 +195,7 @@
<u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="0" :margin-bottom="0" bg-color="#fff" /> <u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="0" :margin-bottom="0" bg-color="#fff" />
</view> </view>
</scroll-view> </scroll-view>
<tabbar></tabbar> <tabbar v-if="showtab==true"></tabbar>
<auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth="gbAuth"></auth> <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;"> <u-popup v-model="showDialog" mode="center" :mask-close-able="false" custom-style="padding:0;background:none;">
<view style="position: relative;"> <view style="position: relative;">
...@@ -260,6 +260,7 @@ ...@@ -260,6 +260,7 @@
qrHeight: 160, qrHeight: 160,
showDialog: false, showDialog: false,
paddingBottm: "0px", paddingBottm: "0px",
showtab:true,
}; };
}, },
components: { components: {
...@@ -283,10 +284,7 @@ ...@@ -283,10 +284,7 @@
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: this.pageTitle, title: this.pageTitle,
}); });
setTimeout(() => {
this.getTabsHeight();
this.getHeadHeight();
}, 1000);
}, },
onLoad(option) { onLoad(option) {
console.log(option) console.log(option)
...@@ -295,7 +293,17 @@ ...@@ -295,7 +293,17 @@
} }
if(option && option.GoodsId){ if(option && option.GoodsId){
this.conMsg.GoodsId = 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.getList();
this.u = uni.getStorageSync("mall_UserInfo"); this.u = uni.getStorageSync("mall_UserInfo");
}, },
...@@ -393,6 +401,7 @@ ...@@ -393,6 +401,7 @@
this.dataThird = item.children; this.dataThird = item.children;
this.active3 = -1; this.active3 = -1;
this.conMsg.CateId = item.Id; this.conMsg.CateId = item.Id;
this.conMsg.pageIndex = 1
this.getContent(); this.getContent();
this.getChang(); this.getChang();
}, },
...@@ -402,6 +411,7 @@ ...@@ -402,6 +411,7 @@
this.active3 = index; this.active3 = index;
this.show = false; this.show = false;
this.conMsg.CateId = item.Id; this.conMsg.CateId = item.Id;
this.conMsg.pageIndex = 1
this.getContent(); this.getContent();
this.getChang(); 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