This commit is contained in:
parent
c271f3d988
commit
420a31531f
|
@ -5,7 +5,9 @@
|
||||||
<div class="infrastructrue-tab">
|
<div class="infrastructrue-tab">
|
||||||
<div v-for="(item, index) in tabList" :key="index" class="tabBox">
|
<div v-for="(item, index) in tabList" :key="index" class="tabBox">
|
||||||
<b class="leftType">{{ item.title }}</b>
|
<b class="leftType">{{ item.title }}</b>
|
||||||
<button @click="nullClick" v-if="item.title == '视频标签'">清空</button>
|
<a-button @click="nullClick" v-if="item.title == '视频标签'">
|
||||||
|
清空
|
||||||
|
</a-button>
|
||||||
<span
|
<span
|
||||||
v-for="itemContent in item.content"
|
v-for="itemContent in item.content"
|
||||||
:key="itemContent"
|
:key="itemContent"
|
||||||
|
@ -539,6 +541,19 @@
|
||||||
}
|
}
|
||||||
.tabBox {
|
.tabBox {
|
||||||
margin-bottom: 0.16rem;
|
margin-bottom: 0.16rem;
|
||||||
|
:deep(.ant-btn:active) {
|
||||||
|
color: unset;
|
||||||
|
border-color: unset;
|
||||||
|
}
|
||||||
|
:deep(.ant-btn) {
|
||||||
|
margin-left: 10px;
|
||||||
|
border: 1px solid #666666;
|
||||||
|
color: #666666;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
:deep(.ant-btn:hover) {
|
||||||
|
color: #40a9ff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.tabBox:last-of-type {
|
.tabBox:last-of-type {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
Loading…
Reference in New Issue