fix: 语音视频分开播放功能提交
parent
dc4dc17d26
commit
03619868c9
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,22 @@
|
|||||||
|
export default {
|
||||||
|
path: "/digitalHuman",
|
||||||
|
redirect: "/digitalHuman/index",
|
||||||
|
meta: {
|
||||||
|
title: "数字人",
|
||||||
|
icon: "weixinFavorites",
|
||||||
|
rank: 14
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: "/digitalHuman/index",
|
||||||
|
name: "DigitalHuman",
|
||||||
|
component: () => import("@/views/digitalHuman/index.vue"),
|
||||||
|
meta: {
|
||||||
|
title: "在线数字人 ",
|
||||||
|
showLink: true,
|
||||||
|
showParent: true,
|
||||||
|
roles: ["admin", "common"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
} as RouteConfigsTable;
|
@ -0,0 +1,42 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import titleIcon from "@/assets/newInquiry/title_icon.png";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="ConsultationRecords">
|
||||||
|
<div class="main">
|
||||||
|
<div class="evaluate">
|
||||||
|
<div class="header_title">
|
||||||
|
<div class="title">
|
||||||
|
<img :src="titleIcon" alt="" />
|
||||||
|
<span>问诊评价</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main_list">111</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.ConsultationRecords {
|
||||||
|
display: flex;
|
||||||
|
padding: 32px;
|
||||||
|
|
||||||
|
.main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.evaluate {
|
||||||
|
width: 441px;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main_list {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue