Commit b6b87dd5 authored by Damon's avatar Damon

feat: 图片未上传完处理

parent 2114792f
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
@click.stop="prviewImage(item, index)" @click.stop="prviewImage(item, index)"
fade fade
lazy-load lazy-load
></u-image> ><view slot="error" style="font-size: 24rpx;">上传中</view></u-image>
<view <view
class="icon-del-box" class="icon-del-box"
v-if="!disabled" v-if="!disabled"
......
...@@ -23,8 +23,10 @@ ...@@ -23,8 +23,10 @@
<!-- <text class="rightContent u-m-t-14 u-m-l-30 u-p-b-30">{{item.describe}}</text> --> <!-- <text class="rightContent u-m-t-14 u-m-l-30 u-p-b-30">{{item.describe}}</text> -->
</view> </view>
<view class="rightImageView" v-if="item.orderImages && item.orderImages.length > 0"> <view class="rightImageView" v-if="item.orderImages && item.orderImages.length > 0">
<image class="rightImage" v-for="(image, index) in item.orderImages" :src="image" <u-image class="rightImage" v-for="(image, index) in item.orderImages" :src="image + '?imageView2/1/w/100/h/100/q/75'"
:key="index" @click.stop="handleClickImage(item, index)" mode="aspectFill"></image> :key="index" @tap.stop="handleClickImage(item, index)" width="116" height="116">
<view slot="error" style="font-size: 24rpx;">上传中</view>
</u-image>
</view> </view>
</view> </view>
</template> </template>
...@@ -419,8 +421,8 @@ ...@@ -419,8 +421,8 @@
.rightImage { .rightImage {
background-color: #F3F3F3; background-color: #F3F3F3;
width: 116rpx; /* width: 116rpx;
height: 116rpx; height: 116rpx; */
margin: 0rpx 12rpx 12rpx 0rpx; 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