|
|
@@ -212,7 +212,7 @@
|
|
|
<view class="card-section">
|
|
|
<view class="section-title">
|
|
|
<text class="title-text">售后图片</text>
|
|
|
- <text class="title-sub">选填,最多9张</text>
|
|
|
+ <text class="title-sub">选填,最多6张</text>
|
|
|
</view>
|
|
|
<view class="upload-body">
|
|
|
<view class="upload-grid">
|
|
|
@@ -230,7 +230,7 @@
|
|
|
<view class="upload-item__del" @tap.stop="removeUploadImg(idx)">×</view>
|
|
|
</view>
|
|
|
<view
|
|
|
- v-if="uploadRefundImg.length < 9"
|
|
|
+ v-if="uploadRefundImg.length < 6"
|
|
|
class="upload-item upload-item--add"
|
|
|
@tap="chooseRefundImg"
|
|
|
>
|
|
|
@@ -644,9 +644,9 @@ export default {
|
|
|
if (this.uploadingImg) {
|
|
|
return
|
|
|
}
|
|
|
- const remain = 9 - this.uploadRefundImg.length
|
|
|
+ const remain = 6 - this.uploadRefundImg.length
|
|
|
if (remain <= 0) {
|
|
|
- this.$msg('最多上传9张')
|
|
|
+ this.$msg('最多上传6张')
|
|
|
return
|
|
|
}
|
|
|
uni.chooseImage({
|