From fc708f88d7b8dcb22718a88df656703ca67cccf8 Mon Sep 17 00:00:00 2001 From: Seven Date: Tue, 13 Jan 2026 20:01:03 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E7=A1=AE=E8=AE=A4?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E9=80=BB=E8=BE=91=EF=BC=8C=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E6=A8=A1=E6=80=81=E6=A1=86=E5=85=B3=E9=97=AD=E6=97=B6=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E6=88=90=E5=8A=9F=E7=8A=B6=E6=80=81=EF=BC=9B=E5=9C=A8?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E4=B8=AD=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=BA=95=E9=83=A8=E9=97=B4=E8=B7=9D=EF=BC=9B=E5=9C=A8=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E9=A1=B5=E9=9D=A2=E4=B8=AD=E6=B7=BB=E5=8A=A0=E4=BB=B7?= =?UTF-8?q?=E6=A0=BC=E3=80=81=E6=95=B0=E9=87=8F=E5=92=8C=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E5=8F=98=E5=8C=96=E7=9A=84=E8=AE=A1=E7=AE=97=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trade/components/confirm-order.vue | 2 +- src/views/trade/components/order-book.vue | 40 ++++++++++++++++++++ src/views/trade/components/order-list.vue | 2 +- src/views/trade/index.vue | 30 ++++++++++++--- 4 files changed, 67 insertions(+), 7 deletions(-) diff --git a/src/views/trade/components/confirm-order.vue b/src/views/trade/components/confirm-order.vue index aaa763a..8a97717 100644 --- a/src/views/trade/components/confirm-order.vue +++ b/src/views/trade/components/confirm-order.vue @@ -31,7 +31,7 @@ async function onConfirm() { color: "success", }); await toast.present(); - modalController.dismiss(); + modalController.dismiss({ success: true }); } diff --git a/src/views/trade/components/order-book.vue b/src/views/trade/components/order-book.vue index 918fde9..4e3ec42 100644 --- a/src/views/trade/components/order-book.vue +++ b/src/views/trade/components/order-book.vue @@ -1,12 +1,14 @@