Compare commits
4
Commits
v0.9.6
..
68aabbb361
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68aabbb361 | ||
|
|
6e841b12f5 | ||
|
|
7f227fcf05 | ||
|
|
a34a646c71 |
+2
-1
@@ -6,7 +6,8 @@
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
"preview": "vite preview",
|
||||
"postbuild": "scp -r dist/. root@uvpn.shop:/opt/uvpn.shop/frontend"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lucide/vue": "^1.16.0",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<section class="px-6 py-20 md:px-12 max-w-7xl mx-auto">
|
||||
<div class="mb-14">
|
||||
<h2 class="text-3xl md:text-4xl font-bold text-center">
|
||||
<div class="mb-10">
|
||||
<h2 class="text-3xl md:text-4xl font-bold text-center mb-14">
|
||||
Статус серверов
|
||||
</h2>
|
||||
<div class="flex justify-center mt-6">
|
||||
@@ -26,7 +26,7 @@
|
||||
<div
|
||||
v-for="host in sortedHosts"
|
||||
:key="host.address"
|
||||
class="flex items-center justify-between bg-white dark:bg-gray-900 rounded-xl px-4 py-2.5 border transition hover:shadow-md"
|
||||
class="flex items-center justify-between bg-white dark:bg-gray-900 rounded-xl px-4 py-2.5 border"
|
||||
:class="host.isOnline ? 'border-green-500/30' : 'border-red-500/30 opacity-60'"
|
||||
>
|
||||
<div class="flex items-center gap-3">
|
||||
@@ -38,13 +38,13 @@
|
||||
<span class="font-semibold text-gray-800 dark:text-white">{{ host.name }}</span>
|
||||
|
||||
<!-- Индикатор состояния (вместо online/offline) -->
|
||||
<span class="relative flex h-3 w-3">
|
||||
<span class="relative flex h-2 w-2">
|
||||
<span
|
||||
class="animate-ping absolute inline-flex h-full w-full rounded-full opacity-75"
|
||||
:class="host.isOnline ? 'bg-green-500' : 'bg-red-500'"
|
||||
></span>
|
||||
<span
|
||||
class="relative inline-flex rounded-full h-3 w-3"
|
||||
class="relative inline-flex rounded-full h-2 w-2"
|
||||
:class="host.isOnline ? 'bg-green-600' : 'bg-red-600'"
|
||||
></span>
|
||||
</span>
|
||||
@@ -61,7 +61,7 @@
|
||||
}"
|
||||
>
|
||||
<Wifi :size="14" />
|
||||
{{ host.ping }}ms
|
||||
{{ host.ping }} ms
|
||||
</span>
|
||||
<span v-else class="text-gray-300 font-mono">—</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user