|
|
@ -2,7 +2,12 @@
|
|
|
|
<div class="color-list">
|
|
|
|
<div class="color-list">
|
|
|
|
<div class="list-item" v-for="(item, index) in colorListL" :key="index">
|
|
|
|
<div class="list-item" v-for="(item, index) in colorListL" :key="index">
|
|
|
|
<div class="item-name">
|
|
|
|
<div class="item-name">
|
|
|
|
<ColorCell :item="item" v-if="item.color" style="margin-right: 12px" />
|
|
|
|
<ColorCell
|
|
|
|
|
|
|
|
:item="item"
|
|
|
|
|
|
|
|
v-if="item.color"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
class="color-item"
|
|
|
|
|
|
|
|
/>
|
|
|
|
<span>
|
|
|
|
<span>
|
|
|
|
{{ item.name }}
|
|
|
|
{{ item.name }}
|
|
|
|
<span v-show="item.name == '户籍'"
|
|
|
|
<span v-show="item.name == '户籍'"
|
|
|
@ -64,7 +69,7 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.item-value {
|
|
|
|
.item-value {
|
|
|
|
span:nth-child(odd) {
|
|
|
|
span:nth-child(odd) {
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #52ccff;
|
|
|
|
color: #52ccff;
|
|
|
|
font-family: "DIN-Medium-2.otf";
|
|
|
|
font-family: "DIN-Medium-2.otf";
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -74,10 +79,13 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > .list-item:last-child {
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
.list-item:nth-child(9) .item-value,
|
|
|
|
.list-item:nth-child(9) .item-value,
|
|
|
|
.list-item:nth-child(10) .item-value {
|
|
|
|
.list-item:nth-child(10) .item-value {
|
|
|
|
span:nth-child(odd) {
|
|
|
|
span:nth-child(odd) {
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #ffb400;
|
|
|
|
color: #ffb400;
|
|
|
|
font-family: "DIN-Medium-2.otf";
|
|
|
|
font-family: "DIN-Medium-2.otf";
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -92,4 +100,7 @@ export default {
|
|
|
|
border: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.color-item {
|
|
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|
|
|
|