From a3c86ea0f7f278bccc9d29dfa728daec12485a5b Mon Sep 17 00:00:00 2001 From: Seven Date: Thu, 8 Jan 2026 20:34:56 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E9=93=B6=E8=A1=8C?= =?UTF-8?q?=E5=8D=A1=E7=AE=A1=E7=90=86=E5=92=8C=E6=8F=90=E7=8E=B0=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=95=8C=E9=9D=A2=EF=BC=8C=E8=B0=83=E6=95=B4=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E5=88=97=E6=A0=87=E9=A2=98=EF=BC=8C=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E8=AE=A4=E8=AF=81=E7=8A=B6=E6=80=81=E5=88=97=EF=BC=8C=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E8=A1=A8=E5=A4=B4=E6=93=8D=E4=BD=9C=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/user/bankcard/index.vue | 9 ++++++++- src/views/withdraw/approved/index.vue | 5 +++++ src/views/withdraw/fiat/index.vue | 5 +++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/views/user/bankcard/index.vue b/src/views/user/bankcard/index.vue index 338bbc2..c088c53 100644 --- a/src/views/user/bankcard/index.vue +++ b/src/views/user/bankcard/index.vue @@ -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" /> diff --git a/src/views/withdraw/approved/index.vue b/src/views/withdraw/approved/index.vue index f4ee03f..cd9cc81 100644 --- a/src/views/withdraw/approved/index.vue +++ b/src/views/withdraw/approved/index.vue @@ -152,6 +152,11 @@ const filterColumns: TableFilterColumns = [ :columns="columns" :filter-columns="filterColumns" :fetch-data="fetchData" + :header-operations="{ + add: false, + refresh: true, + columns: true + }" /> diff --git a/src/views/withdraw/fiat/index.vue b/src/views/withdraw/fiat/index.vue index 48009b1..1bcea43 100644 --- a/src/views/withdraw/fiat/index.vue +++ b/src/views/withdraw/fiat/index.vue @@ -179,6 +179,11 @@ const filterColumns: TableFilterColumns = [ :columns="columns" :filter-columns="filterColumns" :fetch-data="fetchData" + :header-operations="{ + add: false, + refresh: true, + columns: true + }" />