From 0cb818f359ed8b3c14faa97299daaa6e5d29db6a Mon Sep 17 00:00:00 2001 From: Seven Date: Thu, 18 Dec 2025 19:52:43 +0700 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=A7=E5=93=81=E6=93=8D?= =?UTF-8?q?=E4=BD=9C=E6=8C=89=E9=92=AE=E5=8F=AF=E8=A7=81=E6=80=A7=E9=80=BB?= =?UTF-8?q?=E8=BE=91=EF=BC=8C=E4=BF=AE=E6=94=B9=E7=8A=B6=E6=80=81=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E4=B8=BA=20'under=5Freview'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/rwa/product/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/rwa/product/index.vue b/src/views/rwa/product/index.vue index 4bb9f78..a2b7c76 100644 --- a/src/views/rwa/product/index.vue +++ b/src/views/rwa/product/index.vue @@ -68,9 +68,9 @@ const columns: TableBaseColumns = [ { contentText: '批准', size: 'small', - visible: row.status === 'pending', + visible: row.status === 'under_review', onClick: async () => { - safeClient(() => + await safeClient(() => client.api.admin.rwa.issuance.approve.post({ productId: row.id as string, publishFirstEdition: true @@ -82,9 +82,9 @@ const columns: TableBaseColumns = [ { contentText: '拒绝', size: 'small', - visible: row.status === 'pending', + visible: row.status === 'under_review', onClick: async () => { - safeClient(() => + await safeClient(() => client.api.admin.rwa.issuance.reject.post({ productId: row.id as string, rejectionReason: '不符合要求'