127 lines
2.5 KiB
Vue
127 lines
2.5 KiB
Vue
<template>
|
||
<view>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import storage from '@/utils/storage'
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
name: this.$store.state.user.name,
|
||
version: getApp().globalData.config.appInfo.version
|
||
}
|
||
},
|
||
computed: {
|
||
avatar() {
|
||
return this.$store.state.user.avatar
|
||
},
|
||
windowHeight() {
|
||
return uni.getSystemInfoSync().windowHeight - 50
|
||
}
|
||
},
|
||
methods: {
|
||
handleToInfo() {
|
||
this.$tab.navigateTo('/pages/mine/info/index')
|
||
},
|
||
handleToEditInfo() {
|
||
this.$tab.navigateTo('/pages/mine/info/edit')
|
||
},
|
||
handleToSetting() {
|
||
this.$tab.navigateTo('/pages/mine/setting/index')
|
||
},
|
||
handleToLogin() {
|
||
this.$tab.reLaunch('/pages/login')
|
||
},
|
||
handleToAvatar() {
|
||
this.$tab.navigateTo('/pages/mine/avatar/index')
|
||
},
|
||
handleLogout() {
|
||
this.$modal.confirm('确定注销并退出系统吗?').then(() => {
|
||
this.$store.dispatch('LogOut').then(() => {
|
||
this.$tab.reLaunch('/pages/index')
|
||
})
|
||
})
|
||
},
|
||
handleHelp() {
|
||
this.$tab.navigateTo('/pages/mine/help/index')
|
||
},
|
||
handleAbout() {
|
||
this.$tab.navigateTo('/pages/mine/about/index')
|
||
},
|
||
handleJiaoLiuQun() {
|
||
this.$modal.showToast('QQ群:①133713780、②146013835')
|
||
},
|
||
handleBuilding() {
|
||
this.$modal.showToast('模块建设中~')
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
page {
|
||
background-color: #f5f6f7;
|
||
}
|
||
|
||
.mine-container {
|
||
width: 100%;
|
||
height: 100%;
|
||
|
||
|
||
.header-section {
|
||
padding: 15px 15px 45px 15px;
|
||
background-color: #3c96f3;
|
||
color: white;
|
||
|
||
.login-tip {
|
||
font-size: 18px;
|
||
margin-left: 10px;
|
||
}
|
||
|
||
.cu-avatar {
|
||
border: 2px solid #eaeaea;
|
||
|
||
.icon {
|
||
font-size: 40px;
|
||
}
|
||
}
|
||
|
||
.user-info {
|
||
margin-left: 15px;
|
||
|
||
.u_title {
|
||
font-size: 18px;
|
||
line-height: 30px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.content-section {
|
||
position: relative;
|
||
top: -50px;
|
||
|
||
.mine-actions {
|
||
margin: 15px 15px;
|
||
padding: 20px 0px;
|
||
border-radius: 8px;
|
||
background-color: white;
|
||
|
||
.action-item {
|
||
.icon {
|
||
font-size: 28px;
|
||
}
|
||
|
||
.text {
|
||
display: block;
|
||
font-size: 13px;
|
||
margin: 8px 0px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|