From 63c770775b672e662364b010e67a31597ea26b65 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Mon, 4 Nov 2024 23:27:27 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E9=80=9A=E8=AF=9D=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/liveCall/LiveCallItemHome.vue | 2 +- src/components/liveCall/index.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/liveCall/LiveCallItemHome.vue b/src/components/liveCall/LiveCallItemHome.vue index c4edf0e..d6799cf 100644 --- a/src/components/liveCall/LiveCallItemHome.vue +++ b/src/components/liveCall/LiveCallItemHome.vue @@ -10,7 +10,7 @@
{{ lineName }}
- +
{{item.lineMsg}} diff --git a/src/components/liveCall/index.vue b/src/components/liveCall/index.vue index 94ce8ab..79a18b1 100644 --- a/src/components/liveCall/index.vue +++ b/src/components/liveCall/index.vue @@ -52,13 +52,13 @@ const getCurrentMsg=(line)=>{ recordLeftObj.value.phone=res.data.callPhone recordLeftObj.value.orderName=res.data.orderName recordLeftObj.value.type=res.data.type - recordLeftObj.value.content=res.data.textVoList + recordLeftObj.value.content=res.data.textVoList||[] }else if(line==2){ recordRightObj.value.name=res.data.name recordRightObj.value.phone=res.data.callPhone recordRightObj.value.orderName=res.data.orderName recordRightObj.value.type=res.data.type - recordRightObj.value.content=res.data.textVoList + recordRightObj.value.content=res.data.textVoList||[] } }) }