🐛 修复 user 在 IDEA 报错的问题

pull/420/head
shizhong 2024-03-07 12:51:49 +08:00
parent b062da358a
commit f372fc0cdc
2 changed files with 18 additions and 30 deletions

View File

@ -1,37 +1,25 @@
import request from '@/config/axios' import request from '@/config/axios'
export interface ProfileDept {
id: number
name: string
}
export interface ProfileRole {
id: number
name: string
}
export interface ProfilePost {
id: number
name: string
}
export interface SocialUser {
id: number
type: number
openid: string
token: string
rawTokenInfo: string
nickname: string
avatar: string
rawUserInfo: string
code: string
state: string
}
export interface ProfileVO { export interface ProfileVO {
id: number id: number
username: string username: string
nickname: string nickname: string
dept: ProfileDept dept: {
roles: ProfileRole[] id: number
posts: ProfilePost[] name: string
socialUsers: SocialUser[] }
roles: {
id: number
name: string
}[]
posts: {
id: number
name: string
}[]
socialUsers: {
type: number
openid: string
}[]
email: string email: string
mobile: string mobile: string
sex: number sex: number

View File

@ -41,7 +41,7 @@
<li class="list-group-item"> <li class="list-group-item">
<Icon class="mr-5px" icon="ep:calendar" /> <Icon class="mr-5px" icon="ep:calendar" />
{{ t('profile.user.createTime') }} {{ t('profile.user.createTime') }}
<div class="pull-right">{{ formatDate(userInfo?.createTime) }}</div> <div class="pull-right">{{ formatDate(userInfo.createTime) }}</div>
</li> </li>
</ul> </ul>
</div> </div>
@ -55,7 +55,7 @@ import { getUserProfileApi, ProfileVO } from '@/api/system/user/profile'
defineOptions({ name: 'ProfileUser' }) defineOptions({ name: 'ProfileUser' })
const { t } = useI18n() const { t } = useI18n()
const userInfo = ref<ProfileVO>() const userInfo = ref({} as ProfileVO)
const getUserInfo = async () => { const getUserInfo = async () => {
const users = await getUserProfileApi() const users = await getUserProfileApi()
userInfo.value = users userInfo.value = users