|
@@ -90,8 +90,9 @@
|
|
|
isLink
|
|
|
url="/pages/componentsB/badge/badge"
|
|
|
></u-cell> -->
|
|
|
- <view class="kf">
|
|
|
+ <view class="flex justify-space-between kf">
|
|
|
<button class="left-btn" open-type='contact'>联系客服</button>
|
|
|
+ <image style='width:22px;height:22px;' src="../../static/image/yjt.png" mode=""></image>
|
|
|
</view>
|
|
|
|
|
|
<u-cell :border='false' title="去商家端" isLink url="/pageA/enter/enter"></u-cell>
|
|
@@ -102,6 +103,48 @@
|
|
|
<!-- <view class="exit" @click="exit" v-if="userInfo.phone">
|
|
|
退出账号
|
|
|
</view> -->
|
|
|
+ <u-tabbar
|
|
|
+ :value="tabbarCheck"
|
|
|
+ @change="tabbarChange"
|
|
|
+ activeColor="#5F7DE9"
|
|
|
+ >
|
|
|
+ <u-tabbar-item name="team" text="加入">
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="active-icon"
|
|
|
+ src="@/static/image/nav-icon/antOutline-team Copy.png"
|
|
|
+ ></image>
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="inactive-icon"
|
|
|
+ src="@/static/image/nav-icon/antOutline-team.png"
|
|
|
+ ></image>
|
|
|
+ </u-tabbar-item>
|
|
|
+ <u-tabbar-item name="notification" text="通知">
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="active-icon"
|
|
|
+ src="@/static/image/nav-icon/md-notifications_none Copy.png"
|
|
|
+ ></image>
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="inactive-icon"
|
|
|
+ src="@/static/image/nav-icon/md-notifications_none.png"
|
|
|
+ ></image>
|
|
|
+ </u-tabbar-item>
|
|
|
+ <u-tabbar-item name="user" text="我的">
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="active-icon"
|
|
|
+ src="@/static/image/nav-icon/antOutline-user1 Copy.png"
|
|
|
+ ></image>
|
|
|
+ <image
|
|
|
+ class="u-page__item__slot-icon"
|
|
|
+ slot="inactive-icon"
|
|
|
+ src="@/static/image/nav-icon/antOutline-user1.png"
|
|
|
+ ></image>
|
|
|
+ </u-tabbar-item>
|
|
|
+ </u-tabbar>
|
|
|
<login-pop-up ref='loginpopup' :content='"手机登录后才能查看我的哦~"'></login-pop-up>
|
|
|
</view>
|
|
|
</template>
|
|
@@ -139,6 +182,19 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ tabbarChange(e){
|
|
|
+ console.log(e)
|
|
|
+ if(e=='team'){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pageA/notice/index'
|
|
|
+ })
|
|
|
+ }else if(e=='user'){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pageA/my/my'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ // name => tabbarCheck = name
|
|
|
+ },
|
|
|
todetail(){
|
|
|
uni.navigateTo({
|
|
|
url:"/pageA/notice/index"
|