ruoyi-geek-App/src/pages_mine/pages/info/index.vue

54 lines
1.6 KiB
Vue
Raw Normal View History

2023-08-12 15:44:27 +00:00
<template>
<view class="container">
<uni-list>
2023-08-28 15:12:06 +00:00
<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" />
2023-08-12 15:44:27 +00:00
</uni-list>
2024-01-17 18:45:14 +00:00
<u-button @click="register()">绑定微信</u-button>
2023-08-12 15:44:27 +00:00
</view>
</template>
2024-01-17 18:45:14 +00:00
<script setup>
2023-08-28 15:12:06 +00:00
import { getUserProfile } from "@/api/system/user"
2024-01-17 18:45:14 +00:00
import { ref } from "vue";
import modal from "@/plugins/modal"
const user = ref({})
const roleGroup = ref("")
const postGroup = ref("")
function getUser() {
getUserProfile().then(response => {
user.value = response.data
roleGroup.value = response.roleGroup
postGroup.value = response.postGroup
})
}
getUser()
2023-08-12 15:44:27 +00:00
2024-01-17 18:45:14 +00:00
import { wxRegister } from "@/api/oauth"
import { getWxCode } from "@/utils/geek"
function register(){
modal.loading('绑定微信中...')
getWxCode().then(res=>{
wxRegister('miniapp',res).then(res=>{
modal.closeLoading()
})
})
2023-08-28 15:12:06 +00:00
}
2024-01-17 18:45:14 +00:00
2023-08-12 15:44:27 +00:00
</script>
<style lang="scss">
2023-08-28 15:12:06 +00:00
page {
background-color: #ffffff;
}
2023-08-12 15:44:27 +00:00
</style>