| | |
| | | <template> |
| | | <div class="select-container"> |
| | | <div class="tabs-box"> |
| | | <el-button v-for="item in testData1" class="transparent-button">{{ item.name }} </el-button> |
| | | <!-- <el-tabs v-model="activeName" @tab-click="handleClick"> |
| | | <!-- <el-button v-for="item in testData1" class="transparent-button">{{ item.name }} </el-button> --> |
| | | <el-tabs v-model="activeName" @tab-click="handleClick"> |
| | | <el-tab-pane |
| | | v-for="item in testData1" |
| | | :label="item.name" |
| | | :name="item.value" |
| | | ></el-tab-pane> |
| | | </el-tabs> --> |
| | | </el-tabs> |
| | | <!-- <div> |
| | | <el-button> |
| | | |
| | |
| | | <style lang="scss" scoped> |
| | | .select-container { |
| | | position: absolute; |
| | | top: 10px; |
| | | top: 0px; |
| | | left: 20px; |
| | | display: flex; |
| | | align-items: center; |
| | |
| | | display: flex; |
| | | align-items: center; |
| | | width: 320px; |
| | | margin-top: -15px |
| | | } |
| | | } |
| | | ::v-deep .tabs-box { |
| | | margin-top: 5px; |
| | | width: 40%; |
| | | .el-tabs__item { |
| | | color: #ffffff !important; |
| | | } |
| | | .is-active { |
| | | color: #4481dd !important; |
| | | color: #61aef7 !important; |
| | | background: linear-gradient(135deg, rgb(10,31,75), #003e5b) !important; |
| | | } |
| | | } |
| | | ::v-deep .el-input__inner { |
| | |
| | | ::v-deep .date-select .el-date-editor .el-range-separator { |
| | | color: #4481dd !important; |
| | | } |
| | | .transparent-button { |
| | | background-color: transparent; |
| | | border-color: #23f0ed; |
| | | color: #0d6adb; /* 这里设置按钮文字颜色 */ |
| | | // .transparent-button { |
| | | // background-color: transparent; |
| | | // border-color: #23f0ed; |
| | | // color: #b944dd; /* 这里设置按钮文字颜色 */ |
| | | |
| | | // } |
| | | /* 去掉tabs标签栏下的下划线 */ |
| | | ::v-deep .el-tabs__nav-wrap::after { |
| | | position: static !important; |
| | | /* background-color: #fff; */ |
| | | } |
| | | /* 下划线切换高亮 */ |
| | | ::v-deep .el-tabs__active-bar { |
| | | background-color: #4481DD; |
| | | } |
| | | ::v-deep .el-tabs__item{ |
| | | margin: 5px; |
| | | padding: 0px 10px !important; |
| | | border-radius: 5px; |
| | | background: linear-gradient(135deg, rgb(10,31,75), #599cbb); |
| | | |
| | | } |
| | | </style> |