From d027db8bb74f426fd6c39747cd3d0306162d3578 Mon Sep 17 00:00:00 2001 From: limingyu Date: Mon, 8 Jan 2024 16:39:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/application/supervision/components/info.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/application/supervision/components/info.vue b/src/views/application/supervision/components/info.vue index 1ee567f..a30efe9 100644 --- a/src/views/application/supervision/components/info.vue +++ b/src/views/application/supervision/components/info.vue @@ -403,7 +403,11 @@ export default { this.pd = data.pd this.hotUserList = data.hotUserList for (let i = 0; i < data.hotOperator.length; i++) { - this.hotOperatorNames += data.hotOperator[i].userName2 + ';' + if (i === data.hotOperator.length - 1) { + this.hotOperatorNames += data.hotOperator[i].userName2 + } else { + this.hotOperatorNames += data.hotOperator[i].userName2 + ';' + } } this.corpinfo = data.corpinfo