Files
app-govern/pages/index/mine.vue

194 lines
6.4 KiB
Vue
Raw Normal View History

2023-01-11 16:33:13 +08:00
<template>
2023-01-12 10:03:25 +08:00
<view :loading="loading">
2023-01-11 16:33:13 +08:00
<view class="mine">
<view class="mine-header" @click="jump('basic')">
2023-01-13 16:32:56 +08:00
<image mode="aspectFill" class="mine-header-head" src="/static/head.png" />
<view class="mine-header-name hide-txt">
<view>灿能电力</view>
2023-02-10 16:32:41 +08:00
<view class="tag">{{ roleName }}</view>
2023-01-13 16:32:56 +08:00
</view>
2023-02-22 08:43:52 +08:00
<image src="/static/erweima.png" style="height: 50rpx;width: 50rpx;border-radius:12rpx"
mode="scaleToFill" />
2023-01-11 16:33:13 +08:00
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
</view>
2023-02-01 16:59:32 +08:00
<!-- <view class="mine-nav" @click="jump('upgrade')">
2023-01-11 16:33:13 +08:00
<image mode="aspectFill" class="mine-nav-icon" src="/static/server.png" />
2023-01-13 16:32:56 +08:00
<view class="mine-nav-label">角色升级</view>
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
2023-02-01 16:59:32 +08:00
</view> -->
2023-02-15 16:32:21 +08:00
2023-02-20 14:19:28 +08:00
<!-- <view class="mine-nav" @click="jump('user')" v-if="userInfo.role == 4">
2023-02-09 08:50:01 +08:00
<image mode="aspectFill" class="mine-nav-icon" src="/static/subordinate.png" />
<view class="mine-nav-label">子用户列表</view>
2023-01-11 16:33:13 +08:00
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
2023-02-20 14:19:28 +08:00
</view> -->
2023-02-15 16:32:21 +08:00
<view class="mine-nav" @click="jump('project')" v-if="userInfo.role == 4">
2023-02-20 14:19:28 +08:00
<image mode="aspectFill" class="mine-nav-icon" src="/static/project.png" />
2023-02-15 16:32:21 +08:00
<view class="mine-nav-label">项目管理</view>
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
</view>
<view class="mine-nav" @click="jump('gateway')" v-if="userInfo.role == 4 || userInfo.role == 3"
2023-02-06 13:34:15 +08:00
style="border-bottom: none; box-shadow: 0 4rpx 8rpx #e7e7e74c;">
2023-02-07 17:59:54 +08:00
<image mode="aspectFill" class="mine-nav-icon" src="/static/gateway.png" />
<view class="mine-nav-label">网关列表</view>
2023-02-06 13:34:15 +08:00
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
</view>
2023-02-22 08:43:52 +08:00
<view class="mine-nav" @click="jump('setupMessage')">
<image mode="aspectFill" class="mine-nav-icon" src="/static/notice2.png" />
<view class="mine-nav-label">消息配置</view>
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
</view>
<view class="mine-nav" @click="jump('setup')" style="border-bottom: none; ">
2023-01-11 16:33:13 +08:00
<image mode="aspectFill" class="mine-nav-icon" src="/static/setup.png" />
<view class="mine-nav-label">设置</view>
<uni-icons type="forward" color="#aaa" size="20"></uni-icons>
</view>
2023-01-13 16:32:56 +08:00
<uni-popup ref="inputDialog" type="dialog">
<uni-popup-dialog ref="inputClose" mode="input" title="角色升级" placeholder="请输入六位邀请码"
@confirm="upgrade"></uni-popup-dialog>
</uni-popup>
2023-01-11 16:33:13 +08:00
</view>
2023-01-12 10:03:25 +08:00
</view>
2023-01-11 16:33:13 +08:00
</template>
<script>
export default {
data () {
return {
2023-02-09 08:50:01 +08:00
loading: true,
userInfo: {}
2023-01-11 16:33:13 +08:00
}
},
2023-02-09 08:50:01 +08:00
computed: {
roleName () {
let roleName = ''
switch (this.userInfo.role) {
case 1:
roleName = '运维管理'
break
case 2:
roleName = '专职管理'
break
case 3:
roleName = '工程'
break
case 4:
roleName = '主用户'
break
case 5:
roleName = '子用户'
break
}
return roleName
}
},
2023-01-11 16:33:13 +08:00
methods: {
init () {
2023-02-09 08:50:01 +08:00
this.loading = false
2023-01-11 16:33:13 +08:00
},
2023-01-13 16:32:56 +08:00
upgrade (code) {
console.log(code);
uni.showToast({
title: '升级成功',
icon: 'none'
})
},
2023-01-11 16:33:13 +08:00
jump (type) {
switch (type) {
case 'login':
uni.navigateTo({
2023-01-13 16:32:56 +08:00
url: `/pages/user/login`
2023-01-11 16:33:13 +08:00
})
2023-01-13 16:32:56 +08:00
break;
2023-02-07 17:59:54 +08:00
case 'gateway':
uni.navigateTo({
url: `/pages/gateway/list`
})
break;
2023-01-13 16:32:56 +08:00
case 'upgrade':
this.$refs.inputDialog.open()
break;
2023-02-10 16:32:41 +08:00
case 'basic':
uni.navigateTo({
url: `/pages/user/basic`
})
break;
2023-02-20 14:19:28 +08:00
case 'project':
uni.navigateTo({
url: `/pages/project/list`
})
break;
2023-02-10 16:32:41 +08:00
break;
2023-01-11 16:33:13 +08:00
default:
uni.navigateTo({
url: `/pages/mine/${type}`
})
break;
}
}
},
2023-02-09 08:50:01 +08:00
onShow () {
this.userInfo = uni.getStorageSync(this.$cacheKey.userInfo)
2023-01-11 16:33:13 +08:00
},
}
</script>
<style lang="scss">
.mine {
.mine-header {
padding: 200rpx 34rpx 34rpx;
display: flex;
align-items: center;
background: $uni-theme-white;
margin-bottom: 20rpx;
box-shadow: 0 4rpx 8rpx #e7e7e74c;
.mine-header-head {
margin-right: 30rpx;
height: 128rpx;
width: 128rpx;
border-radius: $uni-theme-radius;
overflow: hidden;
}
.mine-header-name {
margin-right: 30rpx;
flex: 1;
font-size: 36rpx;
color: #111;
font-weight: 700;
2023-01-13 16:32:56 +08:00
.tag {
margin-top: 10rpx;
font-size: 24rpx;
color: #aaa;
}
2023-01-11 16:33:13 +08:00
}
}
.mine-nav {
2023-02-22 08:43:52 +08:00
padding: 34rpx;
2023-01-11 16:33:13 +08:00
display: flex;
align-items: center;
background: $uni-theme-white;
border-bottom: 1rpx solid #e8e8e8;
&-icon {
margin-right: 30rpx;
height: 44rpx;
width: 44rpx;
border-radius: $uni-theme-radius;
overflow: hidden;
}
&-label {
margin-right: 30rpx;
flex: 1;
font-size: 28rpx;
color: #111;
}
}
}
</style>