评论商品接口有问题

This commit is contained in:
bobobobo
2026-01-16 00:12:33 +08:00
parent d2ba0df2b5
commit 5cd2732562
164 changed files with 14318 additions and 197 deletions

View File

@@ -14,9 +14,11 @@
<ChatHeader
:isGroup="isGroup"
:headerExtensionList="headerExtensionList"
:serviceID="serviceID"
@closeChat="closeChat"
@openGroupManagement="handleGroup"
/>
<Forward @toggleMultipleSelectMode="toggleMultipleSelectMode" />
<MessageList
ref="messageListRef"
@@ -120,6 +122,7 @@
import { initChat, logout } from './entry-chat-only.ts'
onLoad(options => {
serviceID.value = options?.id || ''
initChat(options)
})
@@ -136,7 +139,8 @@
// @End uniapp use Chat only
const emits = defineEmits(['closeChat'])
/** 客服 id */
const serviceID = ref('')
const groupID = ref(undefined)
const isGroup = ref(false)
const isNotInGroup = ref(false)
@@ -163,7 +167,7 @@
}
uni.onWindowResize(windowResizeCallback)
onMounted(() => {
onMounted(e => {
TUIStore.watch(StoreName.CONV, {
currentConversation: onCurrentConversationUpdate
})