From d9513a5682a1c56f6909df5398a79f347f29e90f Mon Sep 17 00:00:00 2001 From: jingrow Date: Sat, 2 Aug 2025 21:05:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=9F=E5=90=8D=E5=88=97=E8=A1=A8=E9=A1=B5?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=80=BC=E6=B4=BB=E8=B7=83=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E6=AD=A3=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/src2/objects/domain.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src2/objects/domain.js b/dashboard/src2/objects/domain.js index d24a08c..7435453 100644 --- a/dashboard/src2/objects/domain.js +++ b/dashboard/src2/objects/domain.js @@ -44,7 +44,7 @@ export default { options: [ { label: '', value: '' }, { label: '待处理', value: 'Pending' }, - { label: '活跃', value: 'Active' }, + { label: '正常', value: 'Active' }, { label: '已过期', value: 'Expired' }, { label: '已暂停', value: 'Suspended' }, { label: '已取消', value: 'Cancelled' } @@ -82,7 +82,7 @@ export default { format(value) { const statusMap = { 'Pending': '待处理', - 'Active': '活跃', + 'Active': '正常', 'Expired': '已过期', 'Suspended': '已暂停', 'Cancelled': '已取消' @@ -145,7 +145,7 @@ export default { const status = domain.pg?.status; const statusMap = { 'Pending': '待处理', - 'Active': '活跃', + 'Active': '正常', 'Expired': '已过期', 'Suspended': '已暂停', 'Cancelled': '已取消'