分隔符修改

This commit is contained in:
renpy 2023-08-04 16:27:31 +08:00
parent a9ac8b8bbb
commit 20974524ba
2 changed files with 11 additions and 11 deletions

View File

@ -15,17 +15,17 @@
<template slot="station" slot-scope="{ text }">
<a-tooltip placement="topLeft">
<template slot="title">
{{ text.join("/") }}
{{ text.join("") }}
</template>
{{ text.join("/") }}
{{ text.join("") }}
</a-tooltip>
</template>
<template slot="dataSource" slot-scope="{ text }">
<a-tooltip placement="topLeft">
<template slot="title">
{{ text.join("/") }}
{{ text.join("") }}
</template>
{{ text.join("/") }}
{{ text.join("") }}
</a-tooltip>
</template>
<template slot="info" slot-scope="{ text, record }">

View File

@ -65,7 +65,7 @@
<div class="monitor-list-item-title-name">{{ item.name }}</div>
<div class="monitor-list-item-title-server">
<span style="color: #5b9cba;">Qualifier</span>
<span style="color: #ade6ee;">{{ item.spectralQualifier.join("/") }}</span>
<span style="color: #ade6ee;">{{ item.spectralQualifier.join("") }}</span>
</div>
</div>
<div class="monitor-list-item-content">
@ -74,10 +74,10 @@
<a-col :span="5" class="monitor-list-item-content-info-key">Source</a-col>
<a-tooltip>
<template slot="title">
{{ item.source.join("/") }}
{{ item.source.join("") }}
</template>
<a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.source.join("/") }}
{{ item.source.join("") }}
</a-col>
</a-tooltip>
</a-row>
@ -85,10 +85,10 @@
<a-col :span="5" class="monitor-list-item-content-info-key">Stations</a-col>
<a-tooltip>
<template slot="title">
{{ item.stations.join("/") }}
{{ item.stations.join("") }}
</template>
<a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.stations.join("/") }}
{{ item.stations.join("") }}
</a-col>
</a-tooltip>
</a-row>
@ -96,10 +96,10 @@
<a-col :span="5" class="monitor-list-item-content-info-key">Nuclides</a-col>
<a-tooltip>
<template slot="title">
{{ item.nuclides.join("/") }}
{{ item.nuclides.join("") }}
</template>
<a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.nuclides.join("/") }}
{{ item.nuclides.join("") }}
</a-col>
</a-tooltip>
</a-row>