From eaff01b3d3e5f250f1849ffab2be6fe012f2f755 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 28 Jun 2024 18:08:17 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E5=9B=BE=E8=A1=A8):=20=E5=8F=98?= =?UTF-8?q?=E6=9B=B4=E5=AF=8C=E6=96=87=E6=9C=AC=E6=8E=A7=E5=88=B6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/custom-component/rich-text/DeRichTextView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/custom-component/rich-text/DeRichTextView.vue b/core/core-frontend/src/custom-component/rich-text/DeRichTextView.vue index 41ed91341f..4cd2dad128 100644 --- a/core/core-frontend/src/custom-component/rich-text/DeRichTextView.vue +++ b/core/core-frontend/src/custom-component/rich-text/DeRichTextView.vue @@ -231,7 +231,7 @@ const assignment = content => { value = `${value}` } if (initReady.value) { - content = content.replace(itm, !!value ? value : '[未获取字段值]') + content = content.replace(itm, !!value ? value : '-') } else { content = content.replace(itm, !!value ? value : '[获取中...]') }