Commit 5aeb9a71 authored by 智勇's avatar 智勇

逗号分隔

parent 95f04683
...@@ -74,8 +74,7 @@ ...@@ -74,8 +74,7 @@
/> />
<el-table-column <el-table-column
prop="portMappings" prop="portMappings"
label="服务端口" label="服务端口">
width="300px">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip v-show="scope.row.serviceName === 'redis-sentinel'" placement="top"> <el-tooltip v-show="scope.row.serviceName === 'redis-sentinel'" placement="top">
<div slot="content">四个端口分别为一主二从一哨兵<br>哨兵名称:qsmaster,没有密码</div> <div slot="content">四个端口分别为一主二从一哨兵<br>哨兵名称:qsmaster,没有密码</div>
...@@ -628,12 +627,12 @@ export default { ...@@ -628,12 +627,12 @@ export default {
for (const i in mqDiffData.more) { for (const i in mqDiffData.more) {
if (mqDiffData.more[i] instanceof Array) { if (mqDiffData.more[i] instanceof Array) {
this.moreArray.push({ type: i, value: mqDiffData.more[i].join(' ') }) this.moreArray.push({ type: i, value: mqDiffData.more[i].join(', ') })
} }
} }
for (const i in mqDiffData.lost) { for (const i in mqDiffData.lost) {
if (mqDiffData.lost[i] instanceof Array) { if (mqDiffData.lost[i] instanceof Array) {
this.lostArray.push({ type: i, value: mqDiffData.lost[i].join(' ') }) this.lostArray.push({ type: i, value: mqDiffData.lost[i].join(', ') })
} }
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment