Commit b6b87dd5 authored by Damon's avatar Damon

feat: 图片未上传完处理

parent 2114792f
......@@ -17,7 +17,7 @@
@click.stop="prviewImage(item, index)"
fade
lazy-load
></u-image>
><view slot="error" style="font-size: 24rpx;">上传中</view></u-image>
<view
class="icon-del-box"
v-if="!disabled"
......
......@@ -23,8 +23,10 @@
<!-- <text class="rightContent u-m-t-14 u-m-l-30 u-p-b-30">{{item.describe}}</text> -->
</view>
<view class="rightImageView" v-if="item.orderImages && item.orderImages.length > 0">
<image class="rightImage" v-for="(image, index) in item.orderImages" :src="image"
:key="index" @click.stop="handleClickImage(item, index)" mode="aspectFill"></image>
<u-image class="rightImage" v-for="(image, index) in item.orderImages" :src="image + '?imageView2/1/w/100/h/100/q/75'"
:key="index" @tap.stop="handleClickImage(item, index)" width="116" height="116">
<view slot="error" style="font-size: 24rpx;">上传中</view>
</u-image>
</view>
</view>
</template>
......@@ -419,8 +421,8 @@
.rightImage {
background-color: #F3F3F3;
width: 116rpx;
height: 116rpx;
/* width: 116rpx;
height: 116rpx; */
margin: 0rpx 12rpx 12rpx 0rpx;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment