分隔符修改
This commit is contained in:
parent
a9ac8b8bbb
commit
20974524ba
|
@ -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 }">
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user