_______________template
<div v-for="(item, index) in auditWorkOrderInfo.sexCheckImgList"
:key="index">
<img
:src="item.imgUrl"
alt
class="auditImg"
:class="{yellowBorder: item.sexLevel == '2',redBorder: item.sexLevel == '3'}"
@click="showbigpic(item.imgUrl)"
>
<div style="text-align:right;padding-right:20px;">{{formatDate(item.createTime)}}</div>
</div>
_____________style
.auditImgs {
width: 1100px;
height: 500px;
.auditImg {
width: 200px;
height: 220px;
margin-right: 20px;
// margin-bottom: 20px;
}
}
网友评论