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 + }" />