From 202c28d079c3cc9682d391ff632efeb2167f588a Mon Sep 17 00:00:00 2001 From: wu <1096376783@qq.com> Date: Wed, 21 Feb 2024 17:23:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E4=B9=8B=E9=97=B4=E6=9C=89=E9=97=B4=E9=9A=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/global/UE.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/global/UE.vue b/src/components/global/UE.vue index 07e1ef3..63c511a 100644 --- a/src/components/global/UE.vue +++ b/src/components/global/UE.vue @@ -64,11 +64,11 @@ if (this.IsMultiple) { if (resultMsg.length > 0) { resultMsg.forEach(item => { - html += '<img src="' + this.getIconLink(item.url) + '" style="max-width: 100%;" />'; + html += '<img src="' + this.getIconLink(item.url) + '" style="max-width: 100%;display: block;" />'; }) } } else { - html = '<img src="' + this.getIconLink(resultMsg.url) + '" style="max-width: 100%;" />'; + html = '<img src="' + this.getIconLink(resultMsg.url) + '" style="max-width: 100%;display: block;" />'; } this.ue.execCommand('inserthtml', html); } -- 2.18.1