index.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div class="upload-wrapper">
  3. <el-upload
  4. class="avatar-uploader"
  5. action="/api/uploadFile"
  6. accept="image/*"
  7. :show-file-list="false"
  8. :headers="header"
  9. name="imgFile"
  10. :on-success="handleAvatarSuccess"
  11. :before-upload="beforeAvatarUpload">
  12. <img v-if="imageUrl" :src="imageUrl" class="avatar">
  13. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  14. </el-upload>
  15. </div>
  16. </template>
  17. <script>
  18. import {getToken} from '@/utils/auth'
  19. export default {
  20. props: {
  21. type: {
  22. type: String,
  23. default: 'qrcode'
  24. },
  25. value: {
  26. type: String,
  27. default: ''
  28. },
  29. },
  30. data() {
  31. return {
  32. imageUrl: this.value,
  33. header: {
  34. 'token': getToken(),
  35. },
  36. }
  37. },
  38. methods: {
  39. handleAvatarSuccess(res, file) {
  40. console.log(res);
  41. if (res.code == 200) {
  42. this.$emit('input', res.data.path)
  43. }
  44. // this.imageUrl = URL.createObjectURL(file.raw);
  45. },
  46. beforeAvatarUpload(file) {
  47. const isLt2M = file.size / 1024 / 1024 < 5;
  48. if (!isLt2M) {
  49. this.$message.error('上传头像图片大小不能超过 5MB!');
  50. }
  51. return isLt2M;
  52. },
  53. },
  54. watch: {
  55. value(n, o) {
  56. // this.imageUrl = n ? ('http://' + this.configData.static_url + '/' + n) : ''
  57. this.imageUrl = n
  58. }
  59. }
  60. }
  61. </script>
  62. <style lang="scss">
  63. .avatar-uploader .el-upload {
  64. border: 1px dashed #d9d9d9;
  65. border-radius: 6px;
  66. cursor: pointer;
  67. position: relative;
  68. overflow: hidden;
  69. }
  70. .avatar-uploader .el-upload:hover {
  71. border-color: #409eff;
  72. }
  73. .avatar-uploader-icon {
  74. font-size: 28px;
  75. color: #8c939d;
  76. width: 178px;
  77. height: 178px;
  78. line-height: 178px;
  79. text-align: center;
  80. }
  81. .avatar {
  82. width: 178px;
  83. height: 178px;
  84. display: block;
  85. }
  86. </style>