From 063ae9e8ee7d2da7e3353142be74a5203b40e679 Mon Sep 17 00:00:00 2001 From: Seven Date: Sun, 4 Jan 2026 12:05:12 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E5=AF=B9=E8=A1=A8=E6=A0=BC=E5=88=97=E6=A0=87=E9=A2=98=E5=8F=8A?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=98=BE=E7=A4=BA=E4=B8=BA=E2=80=9C=E6=98=AF?= =?UTF-8?q?=E5=90=A6=E6=BF=80=E6=B4=BB=E2=80=9D=E5=8F=8A=E2=80=9C=E6=BF=80?= =?UTF-8?q?=E6=B4=BB/=E6=9C=AA=E6=BF=80=E6=B4=BB=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tradingPairs/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/tradingPairs/index.vue b/src/views/tradingPairs/index.vue index 3561007..3abc46e 100644 --- a/src/views/tradingPairs/index.vue +++ b/src/views/tradingPairs/index.vue @@ -110,7 +110,7 @@ const columns: TableBaseColumns = [ align: 'center' }, { - title: '是否支持现货交易', + title: '是否激活', key: 'isActive', width: 140, align: 'center', @@ -121,7 +121,7 @@ const columns: TableBaseColumns = [ type: row.isActive ? 'success' : 'error' }, { - default: () => (row.isActive ? '支持' : '不支持') + default: () => (row.isActive ? '激活' : '未激活') } ); }