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(), }, ]; },