feat(LiveRoom): 添加特殊信息组件并调整直播页面逻辑
- 在 LiveRoom 直播页面中引入 specialMessage 组件 -移除 config 的引入,简化页面逻辑 - 新增 specialMessage组件文件,提供特殊信息展示功能
This commit is contained in:
parent
03d22960f0
commit
7026357c09
13
app/pages/LiveRoom/components/specialMessage/index.vue
Normal file
13
app/pages/LiveRoom/components/specialMessage/index.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
@ -4,10 +4,10 @@ import Aliplayer from 'aliyun-aliplayer'
|
||||
import 'aliyun-aliplayer/build/skins/default/aliplayer-min.css'
|
||||
import lock4 from '@/static/images/lock4@2x.png'
|
||||
import lockdfd from '@/static/images/lockdfd@2x.png'
|
||||
import specialMessage from './components/specialMessage/index.vue'
|
||||
const player = ref(null)
|
||||
const quoteStatus = ref(false)
|
||||
const isPlayerReady = ref(false)
|
||||
const config = useRuntimeConfig()
|
||||
const props = defineProps({
|
||||
fullLive: {
|
||||
type: Boolean,
|
||||
|
Loading…
Reference in New Issue
Block a user