删除无用文件

This commit is contained in:
bobobobo
2026-02-04 20:05:32 +08:00
parent a0e0cecbc1
commit f59e09f4ee
374 changed files with 29 additions and 386 deletions

View File

@@ -4,14 +4,18 @@
import videoIcon from '../../../../assets/icon/video-icon.svg'
import { isUniFrameWork } from '../../../../utils/env'
import { computed } from 'vue'
import { type IConversationModel } from '@tencentcloud/chat-uikit-engine-lite'
const props = withDefaults(
defineProps<{
/** 通话状态: 0 语音 1 视频 */
type?: '0' | '1'
/** 信息数据 */
currentConversation?: IConversationModel
}>(),
{
type: '0'
type: '0',
currentConversation: () => ({} as IConversationModel)
}
)
@@ -24,28 +28,26 @@
const onDialogShow = () => {
console.log('弹出窗口')
emits('onDialogPopupShowOrHide', true)
console.log(props.currentConversation)
// emits('onDialogPopupShowOrHide', true)
}
const onDialogClose = () => {
console.log('关闭窗口')
emits('onDialogPopupShowOrHide', false)
// emits('onDialogPopupShowOrHide', false)
}
</script>
<template>
<ToolbarItemContainer
ref="container"
needBottomPopup
:iconFile="evaluateIcon"
:iconWidth="isUniFrameWork ? '34px' : '20px'"
:iconHeight="isUniFrameWork ? '34px' : '20px'"
:title="isType ? '语音通话' : '视频通话'"
@onDialogShow="onDialogShow"
@onDialogClose="onDialogClose"
>
测试通话
</ToolbarItemContainer>
></ToolbarItemContainer>
</template>
<style scoped lang="scss" src="./style/index.scss"></style>

View File

@@ -66,9 +66,19 @@
<!-- 红包 -->
<RedEnvelope @onDialogPopupShowOrHide="handleSwiperDotShow" />
<!-- 语音通话 -->
<CallView @onDialogPopupShowOrHide="handleSwiperDotShow" />
<CallView
v-if="
currentConversation?.type !== TUIChatEngine.TYPES.CONV_GROUP
"
:currentConversation
@onDialogPopupShowOrHide="handleSwiperDotShow"
/>
<!-- 视频通话 -->
<CallView
v-if="
currentConversation?.type !== TUIChatEngine.TYPES.CONV_GROUP
"
:currentConversation
type="1"
@onDialogPopupShowOrHide="handleSwiperDotShow"
/>