forked from angelo/web-retail-h5
feat(global): 测试账号添加特殊判断,部分内容不可见
This commit is contained in:
parent
070f0e61cd
commit
a483b4c336
|
@ -98,7 +98,7 @@
|
|||
ref="child2"
|
||||
@childMethodTrigger="callChildMethod"
|
||||
></znNewsPopup>
|
||||
<RegionSelect />
|
||||
<RegionSelect v-if="userInfo.memberCode != 'BF66886688'" />
|
||||
<!-- 直推排行弹窗
|
||||
<directrank-popup
|
||||
@callznMethodTrigger="callznMethod"
|
||||
|
|
|
@ -1,333 +1,370 @@
|
|||
<template>
|
||||
<view class="content">
|
||||
<u-toast ref="uToast"></u-toast>
|
||||
<view v-if="!ifshowBtn" class="topbar">
|
||||
<view class="levelList_i" v-for="(item, index) in topList" :key="index" @click.prevent="handleLink(item)">
|
||||
{{ item.name }}
|
||||
</view>
|
||||
<view class="content">
|
||||
<u-toast ref="uToast"></u-toast>
|
||||
<view v-if="!ifshowBtn" class="topbar">
|
||||
<view
|
||||
class="levelList_i"
|
||||
v-for="(item, index) in topList"
|
||||
:key="index"
|
||||
@click.prevent="handleLink(item)"
|
||||
>
|
||||
{{ item.name }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="balance">
|
||||
<view
|
||||
class="ba_list"
|
||||
:style="{ backgroundImage: 'url(' + item.backgroundImg + ')' }"
|
||||
v-for="(item, index) in balanceList"
|
||||
:key="index"
|
||||
>
|
||||
<view class="balance_title">
|
||||
<view class="title_left">
|
||||
<view class="">{{ item.pkAccountVal }}</view>
|
||||
<image
|
||||
v-if="!item.canSee"
|
||||
@click="item.canSee = !item.canSee"
|
||||
class="eyeimg"
|
||||
src="../../../static/images/my_eye.png"
|
||||
mode=""
|
||||
></image>
|
||||
<image
|
||||
v-if="item.canSee"
|
||||
@click="item.canSee = !item.canSee"
|
||||
class="eyeimg"
|
||||
src="../../../static/images/my_eye2.png"
|
||||
mode=""
|
||||
></image>
|
||||
</view>
|
||||
<view class="title_right" @click="goTrans">{{ '交易明细' }}</view>
|
||||
</view>
|
||||
<view class="balance_total">
|
||||
{{ `${'总余额'}(${userInfo.currencyIcon})` }}
|
||||
</view>
|
||||
<view class="balance_total2">
|
||||
<text v-if="item.canSee">{{ item.balance | numberToCurrency }}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="balance">
|
||||
<view class="ba_list" :style="{ backgroundImage: 'url(' + item.backgroundImg + ')' }"
|
||||
v-for="(item,index) in balanceList" :key="index">
|
||||
<view class="balance_title">
|
||||
<view class="title_left">
|
||||
<view class="">{{item.pkAccountVal}}</view>
|
||||
<image v-if="!item.canSee" @click="item.canSee=!item.canSee" class="eyeimg"
|
||||
src="../../../static/images/my_eye.png" mode=""></image>
|
||||
<image v-if="item.canSee" @click="item.canSee=!item.canSee" class="eyeimg"
|
||||
src="../../../static/images/my_eye2.png" mode=""></image>
|
||||
</view>
|
||||
<view class="title_right" @click="goTrans">{{'交易明细'}}</view>
|
||||
</view>
|
||||
<view class="balance_total">
|
||||
{{`${'总余额'}(${userInfo.currencyIcon})`}}
|
||||
</view>
|
||||
<view class="balance_total2">
|
||||
<text v-if="item.canSee">{{item.balance|numberToCurrency}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
<view class="balance_line">
|
||||
<view>{{ `${'可用余额'}(${userInfo.currencyIcon})` }}</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{
|
||||
item.availableBalance | numberToCurrency
|
||||
}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="balance_line">
|
||||
<view>{{`${'可用余额'}(${userInfo.currencyIcon})`}}</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{item.availableBalance|numberToCurrency}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="balance_line">
|
||||
|
||||
<view style="display: flex;align-items: center;">
|
||||
<view style="margin-right: 20rpx;">{{`${'不可用余额'}(${userInfo.currencyIcon})`}}</view>
|
||||
<image @click="showToast(item)" style="width: 25rpx;height:25rpx;"
|
||||
src="../../../static/images/my_tip.png" mode="">
|
||||
</image>
|
||||
|
||||
</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{item.unavailableBalance|numberToCurrency}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.accountType == 4" class="balance_line">
|
||||
<view>{{`${'可提现金额'}(${userInfo.currencyIcon})`}}</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{item.withdrawBalance|numberToCurrency}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-modal @confirm="toUnBind" @cancel='isNoBind=false' :show="isNoBind" title="提示" width="100%"
|
||||
:showCancelButton="true" content='请先进行经销商认证'></u-modal>
|
||||
</view>
|
||||
<view class="balance_line">
|
||||
<view style="display: flex; align-items: center">
|
||||
<view style="margin-right: 20rpx">{{
|
||||
`${'不可用余额'}(${userInfo.currencyIcon})`
|
||||
}}</view>
|
||||
<image
|
||||
@click="showToast(item)"
|
||||
style="width: 25rpx; height: 25rpx"
|
||||
src="../../../static/images/my_tip.png"
|
||||
mode=""
|
||||
>
|
||||
</image>
|
||||
</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{
|
||||
item.unavailableBalance | numberToCurrency
|
||||
}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="item.accountType == 4" class="balance_line">
|
||||
<view>{{ `${'可提现金额'}(${userInfo.currencyIcon})` }}</view>
|
||||
<view>
|
||||
<text v-if="item.canSee">{{
|
||||
item.withdrawBalance | numberToCurrency
|
||||
}}</text>
|
||||
<text v-else>****</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-modal
|
||||
@confirm="toUnBind"
|
||||
@cancel="isNoBind = false"
|
||||
:show="isNoBind"
|
||||
title="提示"
|
||||
width="100%"
|
||||
:showCancelButton="true"
|
||||
content="请先进行经销商认证"
|
||||
></u-modal>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import * as bal from "@/config/balance.js"
|
||||
export default {
|
||||
import * as bal from '@/config/balance.js'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
topList: [
|
||||
{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1',
|
||||
},
|
||||
{
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2',
|
||||
},
|
||||
{
|
||||
name: '转账',
|
||||
path: '/pages/mine/balance/transfer',
|
||||
id: '3',
|
||||
},
|
||||
],
|
||||
tabActive: '',
|
||||
balanceList: [],
|
||||
userInfo: {},
|
||||
ifshowBtn: false,
|
||||
isNoBind: false,
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
let params = {
|
||||
ifcz: true,
|
||||
}
|
||||
this.topList[0].path =
|
||||
'/pages/pay/index?paramsPost=' + JSON.stringify(params)
|
||||
this.getList()
|
||||
this.userInfo = uni.getStorageSync('User')
|
||||
},
|
||||
onShow() {
|
||||
this.gettopList()
|
||||
this.ifCodeName()
|
||||
},
|
||||
methods: {
|
||||
ifCodeName() {
|
||||
if (this.userInfo.memberCode == 'BF66886688') {
|
||||
this.ifshowBtn = true
|
||||
} else {
|
||||
this.ifshowBtn = false
|
||||
}
|
||||
},
|
||||
gettopList() {
|
||||
if (this.userInfo.pkCountry == 1 && this.userInfo.pkGradeId == 1) {
|
||||
this.topList = [
|
||||
{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1',
|
||||
},
|
||||
{
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2',
|
||||
},
|
||||
]
|
||||
} else {
|
||||
this.topList = [
|
||||
{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1',
|
||||
},
|
||||
{
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2',
|
||||
},
|
||||
{
|
||||
name: '转账',
|
||||
path: '/pages/mine/balance/transfer',
|
||||
id: '3',
|
||||
},
|
||||
]
|
||||
}
|
||||
},
|
||||
//交易明细跳转
|
||||
goTrans() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/mine/balance/transDetail',
|
||||
})
|
||||
},
|
||||
showToast(item) {
|
||||
this.$refs.uToast.show({
|
||||
message: `${'禁止消费金额'}:${item.lockAccount}\n${'禁止转账金额'}:${item.transferAccount}\n${'禁止提现金额'}:${item.withdrawAccount}`,
|
||||
})
|
||||
},
|
||||
getList() {
|
||||
bal.getWalletBalance().then(res => {
|
||||
res.data.memberWalletBalanceVOList.forEach(ele => {
|
||||
ele.canSee = false
|
||||
})
|
||||
this.balanceList = res.data.memberWalletBalanceVOList
|
||||
})
|
||||
},
|
||||
checkExit(item) {
|
||||
bal
|
||||
.getIsExist({
|
||||
businessModule: item.id - 1,
|
||||
})
|
||||
.then(res => {
|
||||
if (res.code == 200 && res.flag == 'Y') {
|
||||
uni.navigateTo({
|
||||
url: item.path,
|
||||
})
|
||||
} else if (res.code == 200 && res.flag == 'N') {
|
||||
this.isNoBind = true
|
||||
// uni.navigateTo({
|
||||
// url: "/pages/mine/addLicense/addLicense"
|
||||
// })
|
||||
}
|
||||
})
|
||||
},
|
||||
toUnBind() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/delear/index',
|
||||
})
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
topList: [{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1'
|
||||
}, {
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2'
|
||||
}, {
|
||||
name: '转账',
|
||||
path: '/pages/mine/balance/transfer',
|
||||
id: '3'
|
||||
}, ],
|
||||
tabActive: "",
|
||||
balanceList: [],
|
||||
userInfo: {},
|
||||
ifshowBtn: false,
|
||||
isNoBind:false
|
||||
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
let params = {
|
||||
ifcz: true
|
||||
}
|
||||
this.topList[0].path = '/pages/pay/index?paramsPost=' + JSON.stringify(params)
|
||||
this.getList()
|
||||
this.userInfo = uni.getStorageSync('User')
|
||||
},
|
||||
onShow() {
|
||||
this.gettopList()
|
||||
this.ifCodeName()
|
||||
},
|
||||
methods: {
|
||||
ifCodeName() {
|
||||
if (this.userInfo.memberCode == 'CN68880628') {
|
||||
this.ifshowBtn = true
|
||||
} else {
|
||||
this.ifshowBtn = false
|
||||
}
|
||||
|
||||
},
|
||||
gettopList() {
|
||||
if (this.userInfo.pkCountry == 1 && this.userInfo.pkGradeId == 1) {
|
||||
this.topList = [{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1'
|
||||
}, {
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2'
|
||||
}, ]
|
||||
} else {
|
||||
this.topList = [{
|
||||
name: '充值',
|
||||
path: '/pages/pay/index',
|
||||
id: '1'
|
||||
}, {
|
||||
name: '提现',
|
||||
path: '/pages/mine/balance/withdrawal',
|
||||
id: '2'
|
||||
}, {
|
||||
name: '转账',
|
||||
path: '/pages/mine/balance/transfer',
|
||||
id: '3'
|
||||
}, ]
|
||||
}
|
||||
},
|
||||
//交易明细跳转
|
||||
goTrans() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/mine/balance/transDetail'
|
||||
})
|
||||
},
|
||||
showToast(item) {
|
||||
this.$refs.uToast.show({
|
||||
message: `${'禁止消费金额'}:${item.lockAccount}\n${'禁止转账金额'}:${item.transferAccount}\n${'禁止提现金额'}:${item.withdrawAccount}`,
|
||||
})
|
||||
},
|
||||
getList() {
|
||||
|
||||
bal.getWalletBalance().then(res => {
|
||||
res.data.memberWalletBalanceVOList.forEach(ele => {
|
||||
ele.canSee = false
|
||||
})
|
||||
this.balanceList = res.data.memberWalletBalanceVOList
|
||||
})
|
||||
},
|
||||
checkExit(item) {
|
||||
bal.getIsExist({
|
||||
businessModule: item.id - 1
|
||||
}).then((res) => {
|
||||
if (res.code == 200 && res.flag == "Y") {
|
||||
uni.navigateTo({
|
||||
url: item.path
|
||||
})
|
||||
} else if (res.code == 200 && res.flag == "N") {
|
||||
this.isNoBind = true
|
||||
// uni.navigateTo({
|
||||
// url: "/pages/mine/addLicense/addLicense"
|
||||
// })
|
||||
|
||||
}
|
||||
});
|
||||
},
|
||||
toUnBind(){
|
||||
uni.navigateTo({
|
||||
url: "/pages/delear/index"
|
||||
})
|
||||
},
|
||||
|
||||
handleLink(item) {
|
||||
this.tabActive = item.path;
|
||||
if (item.id == 2 || item.id == 3) {
|
||||
if (this.userInfo.pkCountry == 1) {
|
||||
if (this.userInfo.pkGradeId == 1 && item.id == 2) {
|
||||
|
||||
} else {
|
||||
bal.getIfAuth({
|
||||
businessModule: item.id - 1
|
||||
}).then(res => {
|
||||
if (res.code == 200 && res.flag == "Y") {
|
||||
|
||||
this.checkExit(item)
|
||||
} else if (res.code == 200 && res.flag == "N") {
|
||||
this.smShow = true;
|
||||
uni.showToast({
|
||||
title: '请先进行实名认证'
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: "/pages/selfService/realName/realName"
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: item.path
|
||||
})
|
||||
}
|
||||
|
||||
} else {
|
||||
let paramsPost = {
|
||||
ifcz: true
|
||||
};
|
||||
uni.navigateTo({
|
||||
url: `${item.path}?paramsPost=${encodeURIComponent(JSON.stringify(paramsPost))}`
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
handleLink(item) {
|
||||
this.tabActive = item.path
|
||||
if (item.id == 2 || item.id == 3) {
|
||||
if (this.userInfo.pkCountry == 1) {
|
||||
if (this.userInfo.pkGradeId == 1 && item.id == 2) {
|
||||
} else {
|
||||
bal
|
||||
.getIfAuth({
|
||||
businessModule: item.id - 1,
|
||||
})
|
||||
.then(res => {
|
||||
if (res.code == 200 && res.flag == 'Y') {
|
||||
this.checkExit(item)
|
||||
} else if (res.code == 200 && res.flag == 'N') {
|
||||
this.smShow = true
|
||||
uni.showToast({
|
||||
title: '请先进行实名认证',
|
||||
})
|
||||
uni.navigateTo({
|
||||
url: '/pages/selfService/realName/realName',
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: item.path,
|
||||
})
|
||||
}
|
||||
} else {
|
||||
let paramsPost = {
|
||||
ifcz: true,
|
||||
}
|
||||
uni.navigateTo({
|
||||
url: `${item.path}?paramsPost=${encodeURIComponent(JSON.stringify(paramsPost))}`,
|
||||
})
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.content {
|
||||
.content {
|
||||
background: #f2f2f2;
|
||||
padding-bottom: 40rpx;
|
||||
|
||||
background: #f2f2f2;
|
||||
padding-bottom: 40rpx;
|
||||
.topbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 27rpx 0;
|
||||
background-color: #ffffff;
|
||||
|
||||
.topbar {
|
||||
.levelList_i {
|
||||
min-width: 200rpx;
|
||||
height: 60rpx;
|
||||
border: 2rpx solid #dddddd;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
margin: 0 22rpx;
|
||||
}
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 27rpx 0;
|
||||
background-color: #FFFFFF;
|
||||
.levelList_i:active {
|
||||
background-color: #005bac;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
.levelList_i {
|
||||
min-width: 200rpx;
|
||||
height: 60rpx;
|
||||
border: 2rpx solid #DDDDDD;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
margin: 0 22rpx;
|
||||
}
|
||||
.balance {
|
||||
padding: 0 23rpx;
|
||||
background: #f2f2f2;
|
||||
|
||||
.levelList_i:active {
|
||||
background-color: #005BAC;
|
||||
color: #ffffff;
|
||||
}
|
||||
.ba_list {
|
||||
margin-top: 30rpx;
|
||||
padding: 40rpx 20rpx;
|
||||
border-radius: 25rpx;
|
||||
background-size: 100% 100%;
|
||||
|
||||
}
|
||||
.balance_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
.balance {
|
||||
padding: 0 23rpx;
|
||||
background: #F2F2F2;
|
||||
.title_left {
|
||||
font-size: 32rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.eyeimg {
|
||||
margin-left: 18rpx;
|
||||
width: 38rpx;
|
||||
height: 25rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.ba_list {
|
||||
margin-top: 30rpx;
|
||||
padding: 40rpx 20rpx;
|
||||
border-radius: 25rpx;
|
||||
background-size: 100% 100%;
|
||||
.title_right {
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #2e1aca;
|
||||
}
|
||||
}
|
||||
|
||||
.balance_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.balance_total {
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
|
||||
.title_left {
|
||||
font-size: 32rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.balance_total2 {
|
||||
font-size: 48rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 5rpx;
|
||||
margin-bottom: 50rpx;
|
||||
}
|
||||
|
||||
.eyeimg {
|
||||
margin-left: 18rpx;
|
||||
width: 38rpx;
|
||||
height: 25rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.title_right {
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #2e1aca;
|
||||
}
|
||||
}
|
||||
|
||||
.balance_total {
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
|
||||
.balance_total2 {
|
||||
font-size: 48rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 5rpx;
|
||||
margin-bottom: 50rpx;
|
||||
}
|
||||
|
||||
.balance_line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 5rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
.balance_line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
margin-top: 5rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -334,7 +334,11 @@
|
|||
</u-button>
|
||||
</view>
|
||||
</u-popup>
|
||||
<RegionSelect ref="regionSelect" @success="getRegionSelect" />
|
||||
<RegionSelect
|
||||
v-if="isNormal"
|
||||
ref="regionSelect"
|
||||
@success="getRegionSelect"
|
||||
/>
|
||||
<!-- <talentList :drShow="drShow" @closeShow="closeShow"></talentList> -->
|
||||
</view>
|
||||
</template>
|
||||
|
@ -383,7 +387,7 @@ export default {
|
|||
name: '奖金明细',
|
||||
imgurl: '../../static/images/mark2.png',
|
||||
menuKey: 'incomeDetail',
|
||||
ifshow: true,
|
||||
ifshow: false,
|
||||
},
|
||||
{
|
||||
url: '/pages/ticket/index',
|
||||
|
@ -405,42 +409,42 @@ export default {
|
|||
name: '个人推广',
|
||||
imgurl: '../../static/images/list.svg',
|
||||
menuKey: 'share',
|
||||
ifshow: true,
|
||||
ifshow: false,
|
||||
},
|
||||
{
|
||||
url: '/pages/userSecure/index',
|
||||
name: '账号安全',
|
||||
imgurl: '../../static/images/my_icon8.png',
|
||||
menuKey: '',
|
||||
menuKey: 'userSecure',
|
||||
ifshow: true,
|
||||
},
|
||||
{
|
||||
url: '/pages/addressList/index',
|
||||
name: '地址管理',
|
||||
imgurl: '../../static/images/my_icon9.png',
|
||||
menuKey: '',
|
||||
menuKey: 'addressList',
|
||||
ifshow: true,
|
||||
},
|
||||
{
|
||||
url: '/pages/mine/directPush/index',
|
||||
name: '直推列表',
|
||||
imgurl: '../../static/images/mark5.png',
|
||||
menuKey: '',
|
||||
ifshow: true,
|
||||
menuKey: 'directPush',
|
||||
ifshow: false,
|
||||
},
|
||||
{
|
||||
url: '/pages/mine/bindBank/index',
|
||||
name: '银行信息',
|
||||
imgurl: '../../static/images/my_icon10.png',
|
||||
menuKey: '',
|
||||
menuKey: 'bankInfo',
|
||||
ifshow: true,
|
||||
},
|
||||
{
|
||||
url: '/pages/bonus/regional-assessment/index',
|
||||
name: '区域考核',
|
||||
imgurl: '../../static/images/mark5.png',
|
||||
menuKey: '',
|
||||
ifshow: true,
|
||||
menuKey: 'areaAssessment',
|
||||
ifshow: false,
|
||||
},
|
||||
// {
|
||||
// url: '/pages/mine/addNewPv/index',
|
||||
|
@ -462,11 +466,16 @@ export default {
|
|||
marketDynamicBoxInfo: {},
|
||||
totalSumPv: 0,
|
||||
smallAreaPv: 0,
|
||||
isNormal: false,
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
this.getInfo().finally(() => {
|
||||
this.getInfo().then(isNormal => {
|
||||
this.orderNum()
|
||||
if (!isNormal) {
|
||||
return
|
||||
}
|
||||
this.isNormal = isNormal
|
||||
this.getRegionSelect()
|
||||
this.getMemberBoxCount()
|
||||
this.getMarketDynamicBoxCount()
|
||||
|
@ -636,12 +645,16 @@ export default {
|
|||
api.getInfo().then(res => {
|
||||
if (res.code == 200) {
|
||||
this.userInfo = res.data
|
||||
resolve()
|
||||
if (this.userInfo.memberCode == 'CN68880628') {
|
||||
this.ifSpecial = true
|
||||
} else {
|
||||
this.ifSpecial = false
|
||||
|
||||
if (this.userInfo.memberCode != 'BF66886688') {
|
||||
this.otherMenuList = this.otherMenuList.map(item => {
|
||||
item.ifshow = true
|
||||
return item
|
||||
})
|
||||
resolve(true)
|
||||
return
|
||||
}
|
||||
resolve(false)
|
||||
} else {
|
||||
reject()
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
>
|
||||
<u-collapse-item
|
||||
name="1"
|
||||
v-if="!ifcz && !isShare & (userInfo.memberCode != 'CN68880628')"
|
||||
v-if="!ifcz && !isShare & (userInfo.memberCode != 'BF66886688')"
|
||||
>
|
||||
<view slot="title" class="pf">
|
||||
<img src="@/static/images/yhkzf.jpg" alt="" />
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue