Commit 01a6320a by qlintonger xeno

添加内容+3

parent b968459f
...@@ -42,8 +42,8 @@ const ps = defineProps({ ...@@ -42,8 +42,8 @@ const ps = defineProps({
const userDataForThis = computed(function () { const userDataForThis = computed(function () {
const userNow: any = userStates.value.onlineContacts.find((a: any) => a.fromID === ps.id); const userNow: any = userStates.value.onlineContacts.find((a: any) => a.fromID === ps.id);
return { return {
name: userNow.fromName || '--', name: userNow?.fromName || '--',
calling: userNow.callState !== 'calling' calling: userNow?.callState !== 'calling'
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment