|
@@ -50,7 +50,7 @@
|
|
|
active: item.selected,
|
|
|
[item.id]: true,
|
|
|
'button-level-0': item.level === 0,
|
|
|
- 'button-level-1': item.level === 1,
|
|
|
+ 'bgc': item.level === 1,
|
|
|
}"
|
|
|
@click="changeIndustryState(item)"
|
|
|
>{{ item.name }}</button>
|
|
@@ -58,7 +58,7 @@
|
|
|
<div class="select-group-main">
|
|
|
<button
|
|
|
v-for="(iitem, iindex) in item.children" :key="999-iindex"
|
|
|
- class="j-button-item button-level-2"
|
|
|
+ class="j-button-item bgc-opacity"
|
|
|
:class="{
|
|
|
active: iitem.selected,
|
|
|
[iitem.id]: true
|
|
@@ -365,32 +365,16 @@ export default {
|
|
|
height: 38px;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
- .j-button-item {
|
|
|
- border-color: transparent;
|
|
|
- }
|
|
|
.button-level-0 {
|
|
|
font-weight: 700;
|
|
|
border-color: transparent;
|
|
|
}
|
|
|
- .button-level-1 {
|
|
|
- color: $color-text--highlight;
|
|
|
- &.active {
|
|
|
- color: #fff;
|
|
|
- background-color: $color-text--highlight;
|
|
|
- }
|
|
|
- }
|
|
|
- .button-level-2 {
|
|
|
- &.active {
|
|
|
- background: rgba(44,183,202,0.10);
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
.select-group-container {
|
|
|
position: relative;
|
|
|
margin: 0 4px;
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
- width: 100%;
|
|
|
&:not(:last-of-type)::after {
|
|
|
content: '';
|
|
|
position: absolute;
|