【代码评审】会员:会员详情的 TODO

pull/521/MERGE
YunaiV 2024-08-19 22:15:00 +08:00
parent eecfb90ab6
commit 5dc11f844d
2 changed files with 1 additions and 2 deletions

View File

@ -57,7 +57,7 @@ const formLoading = ref(false) // 表单的加载中1修改时的数据加
const formData = ref({
id: undefined,
nickname: undefined,
balance: '0',
balance: '0', // TODO @puhui999 el-input-number
changeBalance: 0,
changeType: 1
})

View File

@ -2,7 +2,6 @@
<ContentWrap>
<el-table v-loading="loading" :data="list" :show-overflow-tooltip="true" :stripe="true">
<el-table-column align="center" label="编号" prop="id" />
<el-table-column align="center" label="钱包编号" prop="walletId" />
<el-table-column align="center" label="关联业务标题" prop="title" />
<el-table-column align="center" label="交易金额" prop="price">
<template #default="{ row }"> {{ fenToYuan(row.price) }} </template>