소스 검색

fix(storeDecoration): 限制上传文件大小为20MB

- 将门店入口地图组件中的图片上传大小限制从9999MB调整为20MB
- 将门店头部地图组件中的单张图片上传大小限制从9999MB调整为20MB
- 将门店头部地图组件中的多张图片上传大小限制从9999MB调整为20MB
congxuesong 2 주 전
부모
커밋
5ea147a73c
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      src/views/storeDecoration/storeEntranceMap/index.vue
  2. 2 2
      src/views/storeDecoration/storeHeadMap/index.vue

+ 1 - 1
src/views/storeDecoration/storeEntranceMap/index.vue

@@ -21,7 +21,7 @@
               v-model:image-url="formData.entranceImage"
               :width="'400px'"
               :height="'400px'"
-              :file-size="9999"
+              :file-size="20"
               :file-type="['image/jpeg', 'image/png', 'image/gif', 'image/webp']"
               :border-radius="'8px'"
               :api="customUploadApi"

+ 2 - 2
src/views/storeDecoration/storeHeadMap/index.vue

@@ -88,7 +88,7 @@
               v-model:image-url="formData.singleImage"
               :width="'400px'"
               :height="'400px'"
-              :file-size="9999"
+              :file-size="20"
               :file-type="['image/jpeg', 'image/png', 'image/gif', 'image/webp']"
               :border-radius="'8px'"
               :api="singleImageUploadApi"
@@ -107,7 +107,7 @@
               <UploadImgs
                 v-model:file-list="formData.multipleImages"
                 :limit="6"
-                :file-size="9999"
+                :file-size="20"
                 :file-type="['image/jpeg', 'image/png', 'image/gif', 'image/webp']"
                 :width="'200px'"
                 :height="'112px'"