Commit c3f04157 authored by 胡占生's avatar 胡占生 🇨🇳

feat:视频管理,页面调整。

parent 344cdd20
<template> <template>
<el-card class="tab-title"> <el-card class="tab-title">
{{ text }} {{ text }}
</el-card> </el-card>
</template> </template>
<script> <script>
...@@ -16,28 +16,33 @@ export default defineComponent({ ...@@ -16,28 +16,33 @@ export default defineComponent({
</script> </script>
<style scope lang="scss"> <style scope lang="scss">
.tab-title{ .tab-title {
display: flex; display: flex;
align-items:center;/*for vertical align*/ align-items: center;
font-size: 20px; /*for vertical align*/
height: 50px; font-size: 20px;
color: #1890FF; height: 50px;
background-color: #fff; color: #1890FF;
margin-bottom: 10px; background-color: #fff;
border-radius: 5px; margin-bottom: 10px;
padding: 0; border-radius: 5px;
.el-card__body{ padding: 0;
padding: 0 !important;
} .el-card__body {
} padding: 0 !important;
.tab-title::before{ }
content:""; }
display: inline-block;
width: 8px; /* 矩形的宽度 */
height: 28px; /* 矩形的高度 */
background-color: #1890FF; /* 矩形的背景颜色 */
margin-right: 8px;
border-radius: 8px;
}
</style> .tab-title::before {
content: "";
display: inline-block;
width: 8px;
/* 矩形的宽度 */
height: 28px;
/* 矩形的高度 */
background-color: #1890FF;
/* 矩形的背景颜色 */
margin-right: 8px;
border-radius: 8px;
margin-left: 8px;
}</style>
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
default-active="2" default-active="2"
class="el-menu-vertical-demo" class="el-menu-vertical-demo"
> >
<el-menu-item v-for="item in algorithmList" :index="item.name"> <el-menu-item v-for="item in algorithmList" :key="item.name" :index="item.name">
<span>{{ item.name }}</span> <span>{{ item.name }}</span>
</el-menu-item> </el-menu-item>
</el-menu> </el-menu>
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment