2023-08-22 16:14:25 +08:00
|
|
|
|
<template>
|
|
|
|
|
<el-descriptions :column="2">
|
2023-08-23 01:41:25 +08:00
|
|
|
|
<!-- TODO @梦:要不 icon 也给加下? -->
|
|
|
|
|
<!-- TODO @梦:积分、成长值、等级,已经可以读取了,可以看下 -->
|
2023-08-22 16:14:25 +08:00
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
2023-08-23 01:41:25 +08:00
|
|
|
|
<div class="cell-item"> 等级 </div>
|
2023-08-22 16:14:25 +08:00
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
2023-08-23 01:41:25 +08:00
|
|
|
|
<div class="cell-item"> 成长值 </div>
|
2023-08-22 16:14:25 +08:00
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
2023-08-23 01:41:25 +08:00
|
|
|
|
<div class="cell-item"> 当前积分 </div>
|
2023-08-22 16:14:25 +08:00
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
2023-08-23 01:41:25 +08:00
|
|
|
|
<div class="cell-item"> 总积分 </div>
|
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
|
|
|
|
<div class="cell-item"> 当前余额 </div>
|
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
|
|
|
|
<div class="cell-item"> 支出金额 </div>
|
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
<template #label>
|
|
|
|
|
<div class="cell-item"> 充值金额 </div>
|
2023-08-22 16:14:25 +08:00
|
|
|
|
</template>
|
|
|
|
|
{{ 0 }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
defineComponent({
|
|
|
|
|
name: 'AccountInfo'
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.cell-item {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
.cell-item::after {
|
|
|
|
|
content: ':';
|
|
|
|
|
}
|
|
|
|
|
</style>
|