소스 검색

单个图片上传

wangyani 11 달 전
부모
커밋
33aef311ed
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/ImageUploadSingle/index.vue

+ 1 - 1
src/components/ImageUploadSingle/index.vue

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