You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<uni-list>
|
|
|
|
<uni-list-item :show-extra-icon="true" showArrow :extra-icon="accountIcon" title="姓名" :rightText="realName" clickable @click="toPage('../userName/userName')" />
|
|
|
|
<uni-list-item :show-extra-icon="true" showArrow :extra-icon="phoneIcon" title="手机号" :rightText="info.phone" clickable @click="toPage('../phone/phone')" />
|
|
|
|
</uni-list>
|
|
|
|
|
|
|
|
<view class="logout" @click="logout">退出登录</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { authenticationOrNot } from '@/apis/modules/user.js'
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
phoneIcon: {
|
|
|
|
color: '#007eff',
|
|
|
|
size: '22',
|
|
|
|
type: 'phone'
|
|
|
|
},
|
|
|
|
accountIcon: {
|
|
|
|
color: '#007eff',
|
|
|
|
size: '22',
|
|
|
|
type: 'person'
|
|
|
|
},
|
|
|
|
realName: '',
|
|
|
|
info: {
|
|
|
|
account: '',
|
|
|
|
phone: '',
|
|
|
|
email: ''
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onShow() {
|
|
|
|
// this.getInfo()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 获取个人信息
|
|
|
|
async getInfo() {
|
|
|
|
const res = await authenticationOrNot()
|
|
|
|
if (res.authenticationInformation) {
|
|
|
|
this.realName = res.authenticationInformation.realName
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toPage(path) {
|
|
|
|
this.$util.to(path)
|
|
|
|
},
|
|
|
|
// 退出登录
|
|
|
|
logout() {
|
|
|
|
const that = this
|
|
|
|
uni.showModal({
|
|
|
|
title: '提示',
|
|
|
|
content: '确定要退出账号吗?',
|
|
|
|
success(res) {
|
|
|
|
if (res.confirm) {
|
|
|
|
uni.clearStorageSync()
|
|
|
|
that.$util.to('/pages/login/login')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.logout {
|
|
|
|
padding: 30rpx 0;
|
|
|
|
margin-top: 30rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #333;
|
|
|
|
text-align: center;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
</style>
|