Fix(订单/评价):[#1354]订单评价先上传9张照片时,仍可以上传视频

This commit is contained in:
lifizer
2024-04-28 18:07:03 +08:00
parent ae93b92dae
commit 2f33383251
+2 -2
View File
@@ -45,7 +45,7 @@
</text> </text>
</view> </view>
<view class="upload-wrapper"> <view class="upload-wrapper">
<view class="video-upload"> <view v-show="picArr.length < 9" class="video-upload">
<tm-upload <tm-upload
:upload_img_wh="uploadImgWH" :upload_img_wh="uploadImgWH"
:upload_max="1" :upload_max="1"
@@ -63,7 +63,7 @@
:upload_count="9 - videoArr.length" :upload_count="9 - videoArr.length"
:url="uploadUrl" :url="uploadUrl"
:header="uploadHeader" :header="uploadHeader"
:showBlankPlaceholder="true" :showBlankPlaceholder="picArr.length !== 9"
type='image' type='image'
@change="uploadedPicChange" @change="uploadedPicChange"
/> />