ソースを参照

修改图片大小限制

wjj 4 日 前
コミット
63c8ef8fcd
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/views/qw/sop/ImageUpload.vue

+ 1 - 1
src/views/qw/sop/ImageUpload.vue

@@ -152,7 +152,7 @@ export default {
         return false;
       }
       if (this.fileSize) {
-        const isLt = file.size / 1024 / 1024 < this.fileSize;
+        const isLt = file.size / 10 / 1024 / 1024 < this.fileSize;
         if (!isLt) {
           this.$message.error(`上传头像图片大小不能超过 ${this.fileSize} MB!`);
           return false;