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

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

parent 344cdd20
...@@ -16,9 +16,10 @@ export default defineComponent({ ...@@ -16,9 +16,10 @@ 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;
/*for vertical align*/
font-size: 20px; font-size: 20px;
height: 50px; height: 50px;
color: #1890FF; color: #1890FF;
...@@ -26,18 +27,22 @@ export default defineComponent({ ...@@ -26,18 +27,22 @@ export default defineComponent({
margin-bottom: 10px; margin-bottom: 10px;
border-radius: 5px; border-radius: 5px;
padding: 0; padding: 0;
.el-card__body{
.el-card__body {
padding: 0 !important; padding: 0 !important;
} }
} }
.tab-title::before{
content:""; .tab-title::before {
content: "";
display: inline-block; display: inline-block;
width: 8px; /* 矩形的宽度 */ width: 8px;
height: 28px; /* 矩形的高度 */ /* 矩形的宽度 */
background-color: #1890FF; /* 矩形的背景颜色 */ height: 28px;
/* 矩形的高度 */
background-color: #1890FF;
/* 矩形的背景颜色 */
margin-right: 8px; margin-right: 8px;
border-radius: 8px; border-radius: 8px;
} margin-left: 8px;
}</style>
</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