mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-07 15:20:25 +08:00
修复看板中统计数据可能不显示的问题
This commit is contained in:
@@ -12830,7 +12830,7 @@ Vue.component("sort-arrow", {
|
||||
let argValue = v.substring(eqIndex + 1)
|
||||
if (argName == that.name) {
|
||||
order = argValue
|
||||
} else if (argValue != "asc" && argValue != "desc") {
|
||||
} else if (argName != "page" && argValue != "asc" && argValue != "desc") {
|
||||
newArgs.push(v)
|
||||
}
|
||||
} else {
|
||||
|
||||
@@ -16,7 +16,7 @@ Vue.component("sort-arrow", {
|
||||
let argValue = v.substring(eqIndex + 1)
|
||||
if (argName == that.name) {
|
||||
order = argValue
|
||||
} else if (argValue != "asc" && argValue != "desc") {
|
||||
} else if (argName != "page" && argValue != "asc" && argValue != "desc") {
|
||||
newArgs.push(v)
|
||||
}
|
||||
} else {
|
||||
|
||||
@@ -122,7 +122,7 @@
|
||||
<span v-else class="disabled">-</span>
|
||||
</td>
|
||||
<td class="center">
|
||||
<span v-if="node.status.isActive">{{node.status.load1m}}<br/><span class="grey small"></span></span>
|
||||
<span v-if="node.status.isActive">{{node.status.load1m}}</span>
|
||||
<span v-else class="disabled">-</span>
|
||||
</td>
|
||||
<td class="center">
|
||||
|
||||
@@ -112,7 +112,7 @@
|
||||
<span v-else class="disabled">-</span>
|
||||
</td>
|
||||
<td class="center">
|
||||
<span v-if="node.status.isActive && node.status.trafficOutBytes > 0">{{teaweb.formatBytes(node.status.trafficOutBytes/60)}}<br/><span class="grey small">/s</span></span>
|
||||
<span v-if="node.status.isActive && node.status.trafficOutBytes > 0">{{teaweb.formatBytes(node.status.trafficOutBytes/60)}}/s</span>
|
||||
<span v-else class="disabled">-</span>
|
||||
</td>
|
||||
<td class="center">
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
</div>
|
||||
</td>
|
||||
<td class="center">
|
||||
<span v-if="server.bandwidth.length > 0">{{server.bandwidth}}</span>
|
||||
<span v-if="server.bandwidth.length > 0">{{server.bandwidth}}/s</span>
|
||||
<span class="disabled" v-else>-</span>
|
||||
</td>
|
||||
<td class="center">
|
||||
|
||||
Reference in New Issue
Block a user