From b218d844fd54609986ef8019bbcfd6cc13c95a6d Mon Sep 17 00:00:00 2001 From: jingrow Date: Sat, 2 Aug 2025 20:55:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=9F=9F=E5=90=8D=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=E4=B8=8D=E9=9C=80=E8=A6=81=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E7=9A=84=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src2/components/JsiteDomainOverview.vue | 46 ++----------------- 1 file changed, 4 insertions(+), 42 deletions(-) diff --git a/dashboard/src2/components/JsiteDomainOverview.vue b/dashboard/src2/components/JsiteDomainOverview.vue index 89b3685..58d6dee 100644 --- a/dashboard/src2/components/JsiteDomainOverview.vue +++ b/dashboard/src2/components/JsiteDomainOverview.vue @@ -7,16 +7,9 @@
-
-

域名信息

-
-
-
- ¥{{ $domain.pg.price }}/年 -
- +
到期时间:{{ $format.date($domain.pg.end_date) }} @@ -41,33 +34,6 @@
- - -
-
-

域名配置

-
-
-
-
- 域名: - {{ $domain.pg.domain || '未知' }} -
-
- 注册商: - {{ $domain.pg.domain_registrar || '未知' }} -
-
- 所有者: - {{ getOwnerDisplayName() || '未知' }} -
-
- 购买时长: - {{ $domain.pg.period || '未知' }}年 -
-
-
-
@@ -447,19 +413,15 @@ export default { }, { label: '域名', - value: this.$domain.pg?.domain || this.$domain.pg?.name, + value: this.$domain.pg?.domain, }, { label: '注册时间', - value: this.$domain.pg?.registration_date || '未知', - }, - { - label: '注册商', - value: this.$domain.pg?.domain_registrar || '未知', + value: this.$domain.pg?.registration_date, }, { label: '所有者', - value: this.getOwnerDisplayName() || '未知', + value: this.getOwnerDisplayName(), }, ]; },