Browse Source

协议文件不能超过180m

mashengyi 1 năm trước cách đây
mục cha
commit
614d3d4d0e
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/views/noCar/waybillFile.vue

+ 2 - 2
src/views/noCar/waybillFile.vue

@@ -123,7 +123,7 @@ export default{
     },
     // 批量上传模板信息
     async batchUpload() {
-      const isLt50M = this.file.size / 1024 / 1024 < 500
+      const isLt50M = this.file.size / 1024 / 1024 < 180
       let extName = this.file.name.substring(this.file.name.lastIndexOf(`.`)).toLowerCase()
       let AllUpExt = `.zip`
       if (extName != AllUpExt) {
@@ -132,7 +132,7 @@ export default{
       }
 
       if (!isLt50M) {
-        this.$message.error(`上传文件大小不能超过500MB!`)
+        this.$message.error(`上传文件大小不能超过180MB!`)
         return false
       }
       const loading = this.$loading({