parent
48a230aac4
commit
4ffc150701
@ -18,6 +18,7 @@ export interface UserVO {
|
|||||||
areaName: string | undefined
|
areaName: string | undefined
|
||||||
levelName: string | null
|
levelName: string | null
|
||||||
point: number | undefined | null
|
point: number | undefined | null
|
||||||
|
totalPoint: number | undefined | null
|
||||||
experience: number | null | undefined
|
experience: number | null | undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<template #label>
|
<template #label>
|
||||||
<descriptions-item-label label=" 等级 " icon="svg-icon:member_level" />
|
<descriptions-item-label label=" 等级 " icon="svg-icon:member_level" />
|
||||||
</template>
|
</template>
|
||||||
{{ user.levelName || 0 }}
|
{{ user.levelName || '无' }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item>
|
<el-descriptions-item>
|
||||||
<template #label>
|
<template #label>
|
||||||
@ -22,8 +22,9 @@
|
|||||||
<template #label>
|
<template #label>
|
||||||
<descriptions-item-label label=" 总积分 " icon="ep:coin" />
|
<descriptions-item-label label=" 总积分 " icon="ep:coin" />
|
||||||
</template>
|
</template>
|
||||||
{{ 0 }}
|
{{ user.totalPoint || 0 }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
|
<!-- TODO 芋艿:后续接入余额、支付金额 -->
|
||||||
<el-descriptions-item>
|
<el-descriptions-item>
|
||||||
<template #label>
|
<template #label>
|
||||||
<descriptions-item-label label=" 当前余额 " icon="svg-icon:member_balance" />
|
<descriptions-item-label label=" 当前余额 " icon="svg-icon:member_balance" />
|
||||||
|
Loading…
Reference in New Issue
Block a user