From 9d4f8009c5625cdadcaf398c1f03e254b85a9320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167@qq.com> Date: Fri, 2 Sep 2022 12:17:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E7=A1=AE=E8=AE=A4=20?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E4=B8=AD=E6=96=87=E5=BC=95=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/processCenter/processForm/handshakeProcess/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue b/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue index cc254ac6e..db3de9707 100644 --- a/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue +++ b/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue @@ -187,7 +187,7 @@ let json = Object.assign(this.queryBy, { handlingTime: handlingTime }, value) let data = JSON.stringify(json).replace(/\"/g, '\'') Object.keys(data).forEach(res => { - if (data[res] && data[res] instanceof String) { + if (data[res] && typeof data[res] == 'string') { data[res] = data[res].replace(/\"/g, '“') data[res] = data[res].replace(/\'/g, '‘') }