shish 23 часов назад
Родитель
Сommit
cd973a8918
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      mallApp/src/pages/order/refund.vue

+ 4 - 4
mallApp/src/pages/order/refund.vue

@@ -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({