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