diff --git a/public/config.js b/public/config.js index 83f7967..96075e7 100644 --- a/public/config.js +++ b/public/config.js @@ -3,6 +3,8 @@ window.$$nazhuaConfig = { // freeAmount: '白嫖', // 免费服务的费用名称 // infinityCycle: '无限', // 无限周期名称 // buyBtnText: '购买', // 购买按钮文案 + // listServerStatusType: 'progress', // 服务器状态类型--列表 + // detailServerStatusType: 'progress', // 服务器状态类型--详情页 // hideNavbarServerCount: false, // 隐藏服务器数量 // hideNavbarServerStat: false, // 隐藏服务器统计 // hideListItemStatusDonut: true, // 隐藏列表项的饼图 diff --git a/src/layout/main.vue b/src/layout/main.vue index eda7f13..99463f9 100644 --- a/src/layout/main.vue +++ b/src/layout/main.vue @@ -39,7 +39,7 @@ import LayoutFooter from './components/footer.vue'; bottom: 0; left: 0; z-index: 1; - background: var(--layout-bg-color) url('~@/assets/images/bg.webp') no-repeat 50% 0%; + background: var(--layout-bg-color) url('~@/assets/images/bg.webp') no-repeat 50% 100%; background-size: 100% auto; } } diff --git a/src/views/components/server-detail/server-status-box.vue b/src/views/components/server-detail/server-status-box.vue index e4569d3..bf6e135 100644 --- a/src/views/components/server-detail/server-status-box.vue +++ b/src/views/components/server-detail/server-status-box.vue @@ -2,9 +2,10 @@
-
-
- +
{ background: rgba(#000, 0.3); box-shadow: 0 -2px 4px rgba(#000, 0.5); + .left-box { + display: flex; + } + .remaining-time-info { display: flex; align-items: center; @@ -147,6 +152,7 @@ const tagList = computed(() => { .tag-list { display: flex; gap: 6px; + padding-left: 15px; // 折行隐藏 height: 18px; overflow: hidden; @@ -166,7 +172,7 @@ const tagList = computed(() => { display: flex; align-items: center; height: 40px; - padding: 0 15px; + padding-right: 15px; gap: 10px; .billing-info { diff --git a/src/views/components/server-list/server-list-item-status.vue b/src/views/components/server-list/server-list-item-status.vue index 0fa8d6e..efc8fc7 100644 --- a/src/views/components/server-list/server-list-item-status.vue +++ b/src/views/components/server-list/server-list-item-status.vue @@ -1,6 +1,10 @@