feat: 更新银行卡管理和提现管理界面,调整表格列标题,新增认证状态列,优化表头操作配置

This commit is contained in:
2026-01-08 20:34:56 +07:00
parent af4c55952e
commit a3c86ea0f7
3 changed files with 18 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ const columns: TableBaseColumns = [
key: 'userId'
},
{
title: '用户名',
title: '持卡人姓名',
key: 'accountName'
},
{
@@ -40,6 +40,10 @@ const columns: TableBaseColumns = [
title: '风险等级',
key: 'riskStatus'
},
{
title: '是否认证',
key: 'isVerified'
},
{
title: '操作',
fixed: 'right',
@@ -50,6 +54,7 @@ const columns: TableBaseColumns = [
contentText: '编辑',
type: 'primary',
ghost: true,
size: 'small',
onClick: () => {
tableInst.value?.reload();
}
@@ -58,6 +63,7 @@ const columns: TableBaseColumns = [
contentText: '删除',
type: 'error',
ghost: true,
size: 'small',
onClick: async () => {
dialog.create({
title: '提示',
@@ -99,6 +105,7 @@ const filterColumns: TableFilterColumns = [
:columns="columns"
:filter-columns="filterColumns"
:fetch-data="fetchData"
:scroll-x="800"
/>
</template>

View File

@@ -152,6 +152,11 @@ const filterColumns: TableFilterColumns = [
:columns="columns"
:filter-columns="filterColumns"
:fetch-data="fetchData"
:header-operations="{
add: false,
refresh: true,
columns: true
}"
/>
</template>

View File

@@ -179,6 +179,11 @@ const filterColumns: TableFilterColumns = [
:columns="columns"
:filter-columns="filterColumns"
:fetch-data="fetchData"
:header-operations="{
add: false,
refresh: true,
columns: true
}"
/>
</template>