feat(global): 底部导航栏移除会员专区

This commit is contained in:
woody 2025-10-27 13:59:34 +08:00
parent 8767788959
commit b097d35d48
5 changed files with 13 additions and 110 deletions

View File

@ -23,18 +23,7 @@
src="@/static/images/one2.png"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'会员专区'">
<image
class="u-page__item__slot-icon"
slot="active-icon"
src="@/static/images/five1.jpg"
></image>
<image
class="u-page__item__slot-icon"
slot="inactive-icon"
src="@/static/images/five2.jpg"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'个人推广'">
<image
class="u-page__item__slot-icon"
@ -74,81 +63,6 @@
></image>
</u-tabbar-item>
</u-tabbar>
<u-tabbar
:value="current ? current : 0"
class="greenEd"
v-if="systemSkin === 2"
@change="tabbarChange"
:fixed="true"
:placeholder="false"
:border="false"
:safeAreaInsetBottom="true"
inactiveColor="#666666"
activeColor="#333333"
>
<u-tabbar-item :text="'首页'">
<image
class="u-page__item__slot-icon1"
slot="active-icon"
src="@/static/images/one11.jpg"
></image>
<image
class="u-page__item__slot-icon1"
slot="inactive-icon"
src="@/static/images/one11.jpg"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'会员专区'">
<image
class="u-page__item__slot-icon2"
slot="active-icon"
src="@/static/images/five11.jpg"
></image>
<image
class="u-page__item__slot-icon2"
slot="inactive-icon"
src="@/static/images/five11.jpg"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'个人推广'">
<image
class="u-page__item__slot-icon1"
slot="active-icon"
src="@/static/images/share-act.svg"
></image>
<image
class="u-page__item__slot-icon1"
slot="inactive-icon"
src="@/static/images/share.svg"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'购物车'" :badge="shopCarLength">
<image
class="u-page__item__slot-icon1"
slot="active-icon"
src="@/static/images/three11.jpg"
></image>
<image
class="u-page__item__slot-icon1"
slot="inactive-icon"
src="@/static/images/three11.jpg"
></image>
</u-tabbar-item>
<u-tabbar-item :text="'我的'">
<image
class="u-page__item__slot-icon1"
slot="active-icon"
src="@/static/images/fore11.jpg"
></image>
<image
class="u-page__item__slot-icon1"
slot="inactive-icon"
src="@/static/images/fore11.jpg"
></image>
</u-tabbar-item>
</u-tabbar>
</view>
</template>
@ -165,10 +79,6 @@ export default {
text: '首页',
path: 'pages/index/index',
},
{
text: '会员专区',
path: 'pages/specialArea/index',
},
{
text: '个人推广',
path: 'pages/mine/share/index',

View File

@ -101,13 +101,12 @@ import areaProductList from '@/components/area-product-list/index.vue'
import { formatCurrency } from '@/util/index.js'
import { mapGetters } from 'vuex'
import RegionSelect from '@/components/region-select/index.vue'
import RaisedTabbar from '@/components/raised-tabbar.vue'
import GoodsList from '@/components/goods-list.vue'
import RankingPopup from '@/components/RankingPopup.vue'
export default {
components: {
noticePopup,
'cl-tabbar': RaisedTabbar,
'cl-tabbar': clTabbar,
areaProductList,
RegionSelect,
GoodsList,

View File

@ -53,7 +53,7 @@
</view>
</view>
<view class="ju_grade" v-if="!ifSpecial && !newShareMember" >
<view class="ju_grade" v-if="!ifSpecial && !newShareMember">
<!-- <view v-if="awards.tarAwardsName" class="awards-progress-summary" style="text-align: center;">
<span class="descriptive-text">当前距离</span>
<span class="highlight-name">
@ -314,7 +314,7 @@
:text="'退出登录'"
></u-button>
</view>
<cl-tabbar :current="4"></cl-tabbar>
<cl-tabbar :current="3"></cl-tabbar>
<u-popup
:show="pswShow"
class="pspopup"
@ -358,7 +358,7 @@ import RegionSelect from '@/components/region-select/index.vue'
export default {
components: {
'cl-tabbar': RaisedTabbar,
'cl-tabbar': clTabbar,
RegionSelect,
// talentList,
},
@ -666,8 +666,8 @@ export default {
return `${(Math.floor(valueInWan * 100) / 100).toFixed(2)}`
},
getMemberBalance() {
if(this.newShareMember){
return;
if (this.newShareMember) {
return
}
getMemberBalance().then(res => {
console.log('🌈res', res)
@ -730,7 +730,7 @@ export default {
if (res) {
this.userInfo = res.data || {}
console.log(this.userInfo)
this.newShareMember = (this.userInfo?.loginType !== 0);
this.newShareMember = this.userInfo?.loginType !== 0
if (this.userInfo.memberCode == 'BD68880628' || this.newShareMember) {
this.ifSpecial = true
this.otherMenuList = [
@ -835,7 +835,7 @@ export default {
// },
]
if(this.newShareMember){
if (this.newShareMember) {
this.otherMenuList = [
{
url: '/pages/pickupArea/pickupArea',

View File

@ -39,7 +39,7 @@
/>
</view>
</view>
<cl-tabbar class="tabbar" :current="2" />
<cl-tabbar class="tabbar" :current="1" />
</view>
</template>
@ -53,7 +53,7 @@ import RaisedTabbar from '@/components/raised-tabbar.vue'
export default {
name: 'ShareQRCode',
components: {
'cl-tabbar': RaisedTabbar,
'cl-tabbar': clTabbar,
DefaultSharePage,
SpecialSharePage,
},

View File

@ -1,9 +1,3 @@
<!--
* @Descripttion:
* @version:
* @Author: kBank
* @Date: 2022-11-21 15:11:22
-->
<template>
<view class="content">
<view class="context">
@ -139,7 +133,7 @@
</view>
</view>
</view>
<cl-tabbar :current="3"></cl-tabbar>
<cl-tabbar :current="2"></cl-tabbar>
<view class="pp">
<u-popup
:show="dialogVisible2"
@ -185,7 +179,7 @@ import RaisedTabbar from '@/components/raised-tabbar.vue'
import { canOrder } from '@/config/order'
export default {
components: {
'cl-tabbar': RaisedTabbar,
'cl-tabbar': clTabbar,
},
data() {
return {