upload.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div class="form-upload">
  3. <el-upload class="avatar-uploader" action="https://jsonplaceholder.typicode.com/posts/" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload">
  4. <img v-if="imageUrl" :src="imageUrl" class="avatar">
  5. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  6. </el-upload>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'Formupload',
  12. data () {
  13. return {
  14. imageUrl: ''
  15. };
  16. },
  17. methods: {
  18. handleAvatarSuccess (res, file) {
  19. this.imageUrl = URL.createObjectURL(file.raw);
  20. },
  21. beforeAvatarUpload (file) {
  22. const isJPG = file.type === 'image/jpeg';
  23. const isLt2M = file.size / 1024 / 1024 < 2;
  24. if (!isJPG) {
  25. this.$message.error('上传头像图片只能是 JPG 格式!');
  26. }
  27. if (!isLt2M) {
  28. this.$message.error('上传头像图片大小不能超过 2MB!');
  29. }
  30. return isJPG && isLt2M;
  31. }
  32. }
  33. }
  34. </script>
  35. <style>
  36. .avatar-uploader .el-upload {
  37. border: 1px dashed #d9d9d9;
  38. border-radius: 6px;
  39. cursor: pointer;
  40. position: relative;
  41. overflow: hidden;
  42. }
  43. .avatar-uploader .el-upload:hover {
  44. border-color: #409eff;
  45. }
  46. .avatar-uploader-icon {
  47. font-size: 28px;
  48. color: #8c939d;
  49. width: 178px;
  50. height: 178px;
  51. line-height: 178px;
  52. text-align: center;
  53. }
  54. .avatar {
  55. width: 178px;
  56. height: 178px;
  57. display: block;
  58. }
  59. </style>