From ee846c7b6a0fbf7e039a22f4c913aafd8d9e7745 Mon Sep 17 00:00:00 2001 From: Seven Date: Sun, 8 Mar 2026 19:17:14 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E5=88=97=E9=85=8D=E7=BD=AE=EF=BC=8C=E7=A7=BB=E9=99=A4=E4=B8=8D?= =?UTF-8?q?=E5=BF=85=E8=A6=81=E7=9A=84=20ID=20=E5=88=97=EF=BC=8C=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E6=93=8D=E4=BD=9C=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/deposit/fiat/index.vue | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/views/deposit/fiat/index.vue b/src/views/deposit/fiat/index.vue index f327049..b946146 100644 --- a/src/views/deposit/fiat/index.vue +++ b/src/views/deposit/fiat/index.vue @@ -18,10 +18,6 @@ const fetchData: TableFetchData = ({ pagination, filter }) => { }; const columns: TableBaseColumns = [ - { - title: 'ID', - key: 'id' - }, { title: '用户ID', key: 'userId' @@ -57,8 +53,8 @@ const columns: TableBaseColumns = [ { contentText: '通过', type: 'primary', - strong: true, - secondary: true, + ghost: true, + size: 'small', visible: row.status !== 'approved', onClick: async () => { dialog.create({ @@ -82,6 +78,7 @@ const columns: TableBaseColumns = [ contentText: '拒绝', type: 'error', ghost: true, + size: 'small', onClick: async () => { dialog.create({ title: '提示', @@ -134,6 +131,7 @@ const filterColumns: TableFilterColumns = [ :fetch-data="fetchData" show-header-operation :filter-columns="filterColumns" + :scroll-x="800" />