|
|
<template> <view class="pageBgImg"> <view class="status_bar"></view> <view class="" style="height: 88rpx;"></view> <view class="card"> <view class="cut_row" @click.stop="showRole=true" v-if="list.length>1"> <view class="flex-b"> <view class="cut_icon"> <image src="@/static/images/userCenter/cut.png" mode=""></image> </view> <view class="cut_text">切换身份</view> </view> </view> <view class="qcode" @click="$goPage('/pages/userCenter/scanCode/scanCode')" > <image src="@/static/images/coach/ic_erweima.png" mode=""></image> </view> <user-info/> </view> <view class="card" style="padding: 35rpx 0 0 0;"> <view class="ul"> <view class="li" v-for="(item,index) in tabData" :key="index" @click="goPage(item)"> <view class="icon"> <image :src="item.icon" mode=""></image> </view> <view class="text">{{ item.text }}</view> </view> </view> </view> <u-action-sheet :actions="list" title="请选择您要登录的角色" :show="showRole" @select="selectClick" @close="showRole=false" ></u-action-sheet> <UserTab name ='我的'></UserTab> </view> </template>
<script> export default { data() { return { tabData: [], list: [], showRole: false } }, onLoad() { // this.$store.dispatch('refreshToken')
this.initMenu() this.roleListFn() }, onShow() { uni.hideTabBar(); // this.getIpAddress()
}, methods: { goPage(item) { // if(item.text=='结算统计') {
// uni.switchTab({
// url: item.url
// })
// }
this.$goPage(item.url) }, initMenu() { if(this.identity=='实操教练') { this.tabData = [ {text: '今日预约', icon: require('../../../static/images/coach/ic_zhibiao.png'), id: 2, url: '/pages/recordEntry/operate/todayStudent/todayStudent'}, {text: '我的车辆', icon: require('../../../static/images/coach/ic_cheliang.png'), id: 3, url: '/pages/userCenter/myCar/myCar'}, // {text: '考场信息', icon: require('../../../static/images/coach/ic_changdi.png'), id: 4, url: '/pages/userCenter/examinInfo/examinInfo'},
{text: '学员评价', icon: require('../../../static/images/coach/ic_pingjia.png'), id: 5, url: '/pages/userCenter/studentComment/studentComment'}, {text: '教学数据', icon: require('../../../static/images/coach/ic_shuju.png'), id: 6, url: '/pages/userCenter/teachingData/teachingData'}, {text: '结算统计', icon: require('../../../static/images/coach/ic_daijiesuan.png'), id: 1, url: '/pages/tabbar/statistics/index'}, // {text: '学员退款', icon: require('../../../static/images/coach/ic_tuikuan.png'), id: 7, url: '/pages/userCenter/refund/refund'},
] }else if(this.identity=='校长'||this.identity=='驾校财务') { this.tabData = [ {text: '我的车辆', icon: require('../../../static/images/coach/ic_cheliang.png'), id: 3, url: '/pages/userCenter/myCar/myCar'}, {text: '驾校场地', icon: require('../../../static/images/coach/site.png'), id: 7, url: '/pages/userCenter/schoolSite/schoolSite'}, {text: '驾校教练', icon: require('../../../static/images/coach/coach.png'), id: 7, url: '/pages/userCenter/schoolCoach/schoolCoach'}, {text: '教学数据', icon: require('../../../static/images/coach/ic_shuju.png'), id: 6, url: '/pages/userCenter/teachingData/teachingData'}, {text: '学员评价', icon: require('../../../static/images/coach/ic_pingjia.png'), id: 5, url: '/pages/userCenter/studentComment/studentComment'}, {text: '学员退款', icon: require('../../../static/images/coach/ic_tuikuan.png'), id: 7, url: '/pages/userCenter/refund/refund'}, ] }else if(this.identity=='考场模拟教练') { this.tabData = [ {text: '我的车辆', icon: require('../../../static/images/coach/ic_cheliang.png'), id: 3, url: '/pages/userCenter/myCar/myCar'}, {text: '学员评价', icon: require('../../../static/images/coach/ic_pingjia.png'), id: 5, url: '/pages/userCenter/studentComment/studentComment'}, ] }else if(this.identity=='模拟器老师') { this.tabData = [ {text: '学员评价', icon: require('../../../static/images/coach/ic_pingjia.png'), id: 5, url: '/pages/userCenter/studentComment/studentComment'}, ] } }, // 切换角色
selectClick(item) { this.showRole = false this.$store.commit('upDateIdentity', item.name) this.initMenu() uni.reLaunch({ url: '/pages/tabbar/mine/index' }) }, roleListFn() { this.list = [] if(this.role.length<=1) return let roleObj = this.$store.state.user.vuex_role this.role.forEach((item)=>{ let obj = { name: roleObj[item] } this.list.push(obj) }) },
getIpAddress() { // 使用第三方API服务获取IP地址,例如ipinfo.io
fetch('https://ipinfo.io/json') .then(response => response.json()) .then(data => { const ipAddress = data.ip; console.log(data) console.log('用户的IP地址是:', ipAddress); }) .catch(error => { console.error('获取IP地址时出错:', error); }); } } } </script>
<style lang="scss" scoped> .pageBgImg { padding: 40rpx 28rpx; } .card { margin-bottom: 24rpx; padding: 28rpx; position: relative; .qcode { width: 76rpx; height: 76rpx; position: absolute; right: 34rpx; bottom: 24rpx; } .cut_row { display: flex; justify-content: flex-end; margin-bottom: 6rpx; .cut_icon { width: 24rpx; height: 24rpx; } .cut_text { font-size: 24rpx; color: $themC; margin-left: 5rpx; } } } .ul { display: flex; flex-wrap: wrap; .li { display: flex; align-items: center; flex-direction: column; padding: 10rpx 0 50rpx 0; width: 33.33%; .icon { width: 72rpx; height: 72rpx; } .text { font-size: 28rpx; margin-top: 16rpx; } } } </style>
|