分隔符修改

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 }"> <template slot="station" slot-scope="{ text }">
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template slot="title"> <template slot="title">
{{ text.join("/") }} {{ text.join("") }}
</template> </template>
{{ text.join("/") }} {{ text.join("") }}
</a-tooltip> </a-tooltip>
</template> </template>
<template slot="dataSource" slot-scope="{ text }"> <template slot="dataSource" slot-scope="{ text }">
<a-tooltip placement="topLeft"> <a-tooltip placement="topLeft">
<template slot="title"> <template slot="title">
{{ text.join("/") }} {{ text.join("") }}
</template> </template>
{{ text.join("/") }} {{ text.join("") }}
</a-tooltip> </a-tooltip>
</template> </template>
<template slot="info" slot-scope="{ text, record }"> <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-name">{{ item.name }}</div>
<div class="monitor-list-item-title-server"> <div class="monitor-list-item-title-server">
<span style="color: #5b9cba;">Qualifier</span> <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> </div>
<div class="monitor-list-item-content"> <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-col :span="5" class="monitor-list-item-content-info-key">Source</a-col>
<a-tooltip> <a-tooltip>
<template slot="title"> <template slot="title">
{{ item.source.join("/") }} {{ item.source.join("") }}
</template> </template>
<a-col :span="17" class="monitor-list-item-content-info-val"> <a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.source.join("/") }} {{ item.source.join("") }}
</a-col> </a-col>
</a-tooltip> </a-tooltip>
</a-row> </a-row>
@ -85,10 +85,10 @@
<a-col :span="5" class="monitor-list-item-content-info-key">Stations</a-col> <a-col :span="5" class="monitor-list-item-content-info-key">Stations</a-col>
<a-tooltip> <a-tooltip>
<template slot="title"> <template slot="title">
{{ item.stations.join("/") }} {{ item.stations.join("") }}
</template> </template>
<a-col :span="17" class="monitor-list-item-content-info-val"> <a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.stations.join("/") }} {{ item.stations.join("") }}
</a-col> </a-col>
</a-tooltip> </a-tooltip>
</a-row> </a-row>
@ -96,10 +96,10 @@
<a-col :span="5" class="monitor-list-item-content-info-key">Nuclides</a-col> <a-col :span="5" class="monitor-list-item-content-info-key">Nuclides</a-col>
<a-tooltip> <a-tooltip>
<template slot="title"> <template slot="title">
{{ item.nuclides.join("/") }} {{ item.nuclides.join("") }}
</template> </template>
<a-col :span="17" class="monitor-list-item-content-info-val"> <a-col :span="17" class="monitor-list-item-content-info-val">
{{ item.nuclides.join("/") }} {{ item.nuclides.join("") }}
</a-col> </a-col>
</a-tooltip> </a-tooltip>
</a-row> </a-row>