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.
46 lines
1.3 KiB
46 lines
1.3 KiB
<template>
|
|
<view class="container">
|
|
<uni-list>
|
|
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'person-filled' }" title="昵称" :rightText="user.nickName" />
|
|
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'phone-filled' }" title="手机号码" :rightText="user.phonenumber" />
|
|
<!-- <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'email-filled' }" title="邮箱" :rightText="user.email" />
|
|
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'auth-filled' }" title="岗位" :rightText="postGroup" /> -->
|
|
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'staff-filled' }" title="角色" :rightText="roleGroup" />
|
|
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'calendar-filled' }" title="创建日期" :rightText="user.createTime" />
|
|
</uni-list>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { getUserProfile } from '@/api/system/user';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
user: {},
|
|
roleGroup: '',
|
|
postGroup: ''
|
|
};
|
|
},
|
|
onLoad() {
|
|
this.getUser();
|
|
},
|
|
methods: {
|
|
getUser() {
|
|
getUserProfile().then(response => {
|
|
console.log(response);
|
|
this.user = response.data.user;
|
|
this.roleGroup = response.data.roleGroup;
|
|
this.postGroup = response.data.postGroup;
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #ffffff;
|
|
}
|
|
</style>
|