<span v-if="text === 1"
><a-tag style="color: #50c182; background: #eafbe9; border: 0px">
<span class="pointSpanYSH" />
解锁
</a-tag></span>
<span v-else
><a-tag style="color: red; background: #ffe2e2; border: 0px">
<span class="pointSpanWSH" />
锁定
</a-tag></span>
.pointSpanWSH {
width: 7px;
height: 7px;
border-radius: 100%;
/*background: #fa8c16;*/
margin-right: 3px;
margin-bottom: 1px;
line-height: -3px;
display: inline-block;
background: red;
}
//审核中点样式
.pointSpanSHZ {
width: 7px;
height: 7px;
border-radius: 100%;
/*background: #fa8c16;*/
margin-right: 3px;
margin-bottom: 1px;
line-height: -3px;
display: inline-block;
background: orange;
}
//已审核点样式
.pointSpanYSH {
width: 7px;
height: 7px;
border-radius: 100%;
/*background: #fa8c16;*/
margin-right: 3px;
margin-bottom: 1px;
line-height: -3px;
display: inline-block;
background: green;
}