From 531f90d9a4ed60bbf39de271a84f55570e138755 Mon Sep 17 00:00:00 2001 From: Seven Date: Sun, 25 Jan 2026 18:33:20 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=85=85=E5=80=BC?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=B9=B6=E5=9C=A8=E7=94=A8=E6=88=B7=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E4=B8=AD=E9=9B=86=E6=88=90=E5=85=85=E5=80=BC=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=AF=B9=E8=AF=9D=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/user/components/deposit.vue | 17 +++++++++++++++++ src/views/user/index.vue | 13 +++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 src/views/user/components/deposit.vue diff --git a/src/views/user/components/deposit.vue b/src/views/user/components/deposit.vue new file mode 100644 index 0000000..e120baa --- /dev/null +++ b/src/views/user/components/deposit.vue @@ -0,0 +1,17 @@ + + + + + diff --git a/src/views/user/index.vue b/src/views/user/index.vue index 9c1fb21..0476115 100644 --- a/src/views/user/index.vue +++ b/src/views/user/index.vue @@ -12,6 +12,7 @@ import Withdraw from './components/withdraw.vue'; import Team from './components/team.vue'; import Kyc from './components/kyc.vue'; import Ledger from './components/ledger.vue'; +import Deposit from './components/deposit.vue'; const dialog = useDialog(); const message = useMessage(); @@ -95,6 +96,18 @@ const columns: TableBaseColumns = [ }); } }, + { + contentText: '充值订单', + size: 'small', + onClick: () => { + dialog.create({ + title: '充值订单', + showIcon: false, + style: { width: '1000px' }, + content: () => h(Deposit, { userId: row.id }) + }); + } + }, { contentText: '提现订单', size: 'small',