Merge branch 'hotfix' of http://192.168.65.198:3000/Front_Team/SPDM into hotfix

This commit is contained in:
2026-03-30 11:24:35 +08:00
2 changed files with 21 additions and 1 deletions

View File

@@ -116,9 +116,21 @@
}
&--card {
> .el-tabs__header {
overflow: hidden;
.el-tabs__nav {
border-radius: 8px 8px 0 0;
}
.el-tabs__item {
&:first-child {
border-radius: 8px 0 0 0;
}
&:last-child {
border-radius: 0 8px 0 0;
}
&.is-active {
background: var(--el-color-primary-light-9) !important;
}
}
}
}
}

View File

@@ -53,7 +53,7 @@
</div>
<!-- 标签页区域 -->
<el-tabs v-model="activeTab" type="card" @tab-change="tabChangeFun">
<el-tabs v-model="activeTab" type="card" class="tab-card" @tab-change="tabChangeFun">
<el-tab-pane label="任务列表" name="taskList">
<loadcase
ref="loadcaseRef"
@@ -492,3 +492,11 @@ watch(
border-left: 3px solid var(--el-color-primary);
}
</style>
<style lang="scss">
.tab-card {
.darg-line {
display: none !important;
}
}
</style>