fix: 更新未实名状态描述,修正为“未实名”

This commit is contained in:
2026-01-20 00:43:21 +07:00
parent 60de115db3
commit e3916d8ac4
2 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@
"@better-scroll/core": "2.5.1",
"@elysiajs/eden": "^1.4.5",
"@iconify/vue": "5.0.0",
"@riwa/api-types": "http://192.168.1.2:9538/api/capp-eden-0.0.23.tgz",
"@riwa/api-types": "http://192.168.1.2:9538/api/capp-eden-0.0.27.tgz",
"@sa/axios": "workspace:*",
"@sa/color": "workspace:*",
"@sa/hooks": "workspace:*",

View File

@@ -10,7 +10,7 @@ defineOptions({
});
enum WithdrawStatus {
unverified = '未审核',
unverified = '未实名',
pending = '审核中',
approved = '已通过',
rejected = '已拒绝'
@@ -41,14 +41,14 @@ const columns: TableBaseColumns = [
key: 'fileId1',
title: '证件照片正面',
render: (row: any) => {
return h(NImage, { src: row.fileId1, width: 100 });
return row.fileId1 ? h(NImage, { src: row.fileId1, width: 100 }) : '无';
}
},
{
key: 'fileId2',
title: '证件照片背面',
render: (row: any) => {
return h(NImage, { src: row.fileId2, width: 100 });
return row.fileId2 ? h(NImage, { src: row.fileId2, width: 100 }) : '无';
}
},
{