<view class="imgBox" v-for="(item,index) in tempFilePath" :key="index">
<image :src="item" @click="chengout(index)" mode="aspectFill">
<image src="/static/image/del.png" class="del" @click="delImg(index,true)"></image>
</view>
data() {
return {
tempFilePath: [], //图片临时路径
}
}
.imgBox {
position: relative;
width: 100rpx;
height: 100rpx;
margin-left: 20rpx;
}