代码提交

This commit is contained in:
黄少君
2023-11-15 19:59:37 +08:00
parent dcab74274f
commit 35b43ffd97
43 changed files with 1265 additions and 387 deletions

View File

@ -39,10 +39,10 @@
</view>
<view
class="reply-pic flex flex-ai__center"
v-if="data.pics && data.pics.length>0"
v-if="data.pics && data.pics.filter(item=>!!item).length>0"
>
<template
v-for="(pic,index) in data.pics"
v-for="(pic,index) in data.pics.filter(item=>!!item)"
:key="index"
>
<image
@ -154,11 +154,12 @@ function doPreviewImage(current, urls) {
.reply-pic {
gap: 20rpx;
margin-bottom: 20rpx;
margin: 20rpx 0;
flex-wrap: wrap;
padding: 0;
.image {
width: 180rpx;
height: 180rpx;
width: 212rpx;
height: 212rpx;
}
}
</style>