index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <div>
  3. <el-upload action=""
  4. :multiple="false"
  5. :show-file-list="false"
  6. accept="image/jpeg,image/png"
  7. class="image-uploader"
  8. :on-exceed="handleExceed"
  9. :on-change="onFrontImgChange"
  10. :before-upload="beforeUpload">
  11. <el-button type="primary" style="width: 200px;" class="mt20">
  12. {{placeholder}}
  13. </el-button>
  14. </el-upload>
  15. </div>
  16. </template>
  17. <script>
  18. import SparkMD5 from 'spark-md5'
  19. import { uploadImg } from "@/components/httpServer/httpServer.js";
  20. import { compressImg } from "../util.js";
  21. export default {
  22. name: 'Upload',
  23. components: {},
  24. props: {
  25. placeholder:{
  26. type: String,
  27. default: "点击上传基准照片",
  28. },
  29. mins:{
  30. type: Number,
  31. default: 20,
  32. },
  33. maxs:{
  34. type: Number,
  35. default: 200,
  36. },
  37. },
  38. data() {
  39. return {
  40. fileMd5:'',
  41. onupload: false,
  42. }
  43. },
  44. methods: {
  45. beforeUpload(file) {
  46. let fileSize = file.size / 1024
  47. let {maxs,mins} = this;
  48. if (fileSize > maxs ) {
  49. this.$message.error(`上传文件大小不能超过 ${maxs}KB!`);
  50. return false
  51. }
  52. if (fileSize < mins ) {
  53. this.$message.error(`上传文件大小不能小于 ${mins}KB!`);
  54. return false
  55. }
  56. file.is_pass = true;
  57. return true;
  58. },
  59. handleExceed( event ){
  60. console.log('handleExceed', event)
  61. },
  62. onFrontImgChange:function(file, fileList){
  63. const _this = this //this指向问题
  64. var fileReader = new FileReader();
  65. var dataFile = file.raw;
  66. //console.log(file)
  67. let blobSlice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice
  68. var spark = new SparkMD5();
  69. fileReader.readAsBinaryString(dataFile)
  70. //异步执行函数
  71. fileReader.onload = function(e){
  72. spark.appendBinary(e.target.result);
  73. var md5 = spark.end()
  74. _this.fileMd5 = md5;
  75. if( !_this.onupload){
  76. console.log('start', _this.fileMd5)
  77. _this.onupload = true
  78. _this.handleUpload( md5, file.raw )
  79. }else{
  80. console.log("skip", _this.fileMd5 )
  81. }
  82. }
  83. },
  84. handleUpload( rand, file ) {
  85. if( !file.is_pass ) return;
  86. let that = this
  87. const formData = new FormData()
  88. formData.append('avatar', file )
  89. this.$message.successMsg('文件开始上传!', 1);
  90. uploadImg( that.fileMd5, formData ).then( res=>{
  91. that.onupload = false
  92. if( res.code== 200){
  93. that.$emit('onFinish', res.data.url)
  94. }
  95. })
  96. }
  97. }
  98. }
  99. </script>