Compare commits

..

No commits in common. "62d0ca6076819e3ff6e5a379d6c309a1013394b1" and "b956b4ef79c1a20188eda6d781d45798591fa550" have entirely different histories.

2 changed files with 3 additions and 6 deletions

2
env/.env.test vendored
View File

@ -7,6 +7,6 @@ VUE_APP_PREVIEW=false
#VITE_SOCKET_API=ws://192.168.88.21:9504 #VITE_SOCKET_API=ws://192.168.88.21:9504
VITE_BASE_API=http://114.218.158.24:8503 VITE_BASE_API=http://114.218.158.24:8503
VITE_SOCKET_API=ws://114.218.158.24:8504 VITE_SOCKET_API=ws://114.218.158.24:8504
VITE_EPR_BASEURL=http://114.218.158.24:9020 VITE_EPR_BASEURL=http://172.16.100.93:8503
VITE_PAGE_URL=http://172.16.100.93:9032 VITE_PAGE_URL=http://172.16.100.93:9032
VUE_APP_WEBSITE_NAME="" VUE_APP_WEBSITE_NAME=""

View File

@ -1146,9 +1146,8 @@ const handleEnterSearchResultChat = () => {
<main id="talk-session-list" class="el-main me-scrollbar me-scrollbar-thumb"> <main id="talk-session-list" class="el-main me-scrollbar me-scrollbar-thumb">
<template v-if="loadStatus == 2"><Skeleton /></template> <template v-if="loadStatus == 2"><Skeleton /></template>
<template v-else> <template v-else>
<n-virtual-list :item-size="64" :items="items">
<template #default="{ item }">
<TalkItem <TalkItem
v-for="item in items"
:key="item.index_name + item.unread_num" :key="item.index_name + item.unread_num"
:data="item" :data="item"
:avatar="item.avatar" :avatar="item.avatar"
@ -1159,8 +1158,6 @@ const handleEnterSearchResultChat = () => {
@contextmenu.prevent="onContextMenuTalk($event, item)" @contextmenu.prevent="onContextMenuTalk($event, item)"
/> />
</template> </template>
</n-virtual-list>
</template>
</main> </main>
</section> </section>