招标解析

This commit is contained in:
cwchen 2025-11-27 14:23:51 +08:00
parent 5eae89c90c
commit 7dfa5ed0a7
1 changed files with 90 additions and 10 deletions

View File

@ -420,6 +420,34 @@ export default {
padding: 12px 20px;
border-bottom: 1px solid #EBEEF5;
// 使
::v-deep .main-tabs .el-tabs__nav .el-tabs__item:first-child {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
}
::v-deep .main-tabs .el-tabs__nav .el-tabs__item.is-active:first-child {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
}
// 使
::v-deep .main-tabs .el-tabs__nav .el-tabs__item:nth-child(2) {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
border-left: 1px solid #d9d9d9 !important;
}
::v-deep .main-tabs .el-tabs__nav .el-tabs__item.is-active:nth-child(2) {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
border-left: 1px solid #1F72EA !important;
}
::v-deep .main-tabs {
.el-tabs__header {
margin: 0;
@ -453,33 +481,79 @@ export default {
font-size: 14px;
color: #606266;
background: #FFFFFF;
border: none;
border-radius: 0;
border: 1px solid #d9d9d9;
margin-right: 0;
position: relative;
transition: none;
cursor: pointer;
box-shadow: none;
//
&:first-child:not(.is-active) {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
//
&:not(:first-child) {
border-radius: 0;
}
//
&:last-child:not(.is-active) {
// - 使
&:first-child {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
// -
&:nth-child(2) {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-left: 1px solid #d9d9d9 !important;
}
//
&:last-child {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
// +
//
&:not(:first-child):not(:nth-child(2)) {
border-left: none;
}
// +
&.is-active {
color: #FFFFFF;
background: #1F72EA;
font-weight: 500;
z-index: 1;
border-radius: 0 !important;
border-color: #1F72EA;
//
&:first-child {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
}
//
&:nth-child(2) {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-left: 1px solid #1F72EA !important;
}
//
&:last-child {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
//
&:not(:first-child):not(:nth-child(2)) {
border-left: 1px solid #1F72EA;
}
}
// +
@ -487,6 +561,12 @@ export default {
background: #FFFFFF;
color: #606266;
//
&:first-child {
border-top-left-radius: 6px !important;
border-bottom-left-radius: 6px !important;
}
&:hover {
background: #F0F4FF;
color: #1F72EA;