fix : 修复公众台展示细节

This commit is contained in:
2024-09-15 17:54:23 +08:00
parent ac3d2b199c
commit 582216860d
4 changed files with 12 additions and 17 deletions

View File

@@ -11,11 +11,10 @@ defineExpose({
</script>
<template>
<el-dialog v-model="dialogVisible" title="语音详情" width="1500" :before-close="handleClose" class="box">
<el-dialog v-model="dialogVisible" title="历史通话记录" width="1000" :before-close="handleClose" class="box">
<LiveCall />
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="dialogVisible = false">
关闭
</el-button>
@@ -28,4 +27,4 @@ defineExpose({
.box{
height: 65vh;
}
</style>
</style>

View File

@@ -157,7 +157,7 @@ const initWebSocket = () => {
.scrollbar {
padding: 10px 10px 0 10px;
height: 380px;
height: 42vh;
.el-scrollbar__wrap {
height: 100%;

View File

@@ -1,5 +1,5 @@
<template>
<div class="live-call-block">
<live-call-item v-for="item in 2"/>
</div>
@@ -14,7 +14,7 @@
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
height: 470px;
height: 50vh;
overflow-y: auto;
&::-webkit-scrollbar {