EditorImage.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div class="upload-container">
  3. <el-button
  4. :style="{ background: color, borderColor: color }"
  5. icon="el-icon-upload"
  6. size="mini"
  7. type="primary"
  8. @click="dialogVisible = true">
  9. upload
  10. </el-button>
  11. <el-dialog :visible.sync="dialogVisible">
  12. <el-upload
  13. :multiple="true"
  14. :file-list="fileList"
  15. :show-file-list="true"
  16. :on-remove="handleRemove"
  17. :on-success="handleSuccess"
  18. :before-upload="beforeUpload"
  19. class="editor-slide-upload"
  20. action="https://httpbin.org/post"
  21. list-type="picture-card">
  22. <el-button
  23. size="small"
  24. type="primary">
  25. Click upload
  26. </el-button>
  27. </el-upload>
  28. <el-button @click="dialogVisible = false"> Cancel </el-button>
  29. <el-button
  30. type="primary"
  31. @click="handleSubmit">
  32. Confirm
  33. </el-button>
  34. </el-dialog>
  35. </div>
  36. </template>
  37. <script>
  38. // import { getToken } from 'api/qiniu'
  39. export default {
  40. name: 'EditorSlideUpload',
  41. props: {
  42. color: {
  43. type: String,
  44. default: '#1890ff',
  45. },
  46. },
  47. data() {
  48. return {
  49. dialogVisible: false,
  50. listObj: {},
  51. fileList: [],
  52. }
  53. },
  54. methods: {
  55. checkAllSuccess() {
  56. return Object.keys(this.listObj).every(
  57. (item) => this.listObj[item].hasSuccess
  58. )
  59. },
  60. handleSubmit() {
  61. const arr = Object.keys(this.listObj).map((v) => this.listObj[v])
  62. if (!this.checkAllSuccess()) {
  63. this.$message(
  64. 'Please wait for all images to be uploaded successfully. If there is a network problem, please refresh the page and upload again!'
  65. )
  66. return
  67. }
  68. this.$emit('successCBK', arr)
  69. this.listObj = {}
  70. this.fileList = []
  71. this.dialogVisible = false
  72. },
  73. handleSuccess(response, file) {
  74. const uid = file.uid
  75. const objKeyArr = Object.keys(this.listObj)
  76. for (let i = 0, len = objKeyArr.length; i < len; i++) {
  77. if (this.listObj[objKeyArr[i]].uid === uid) {
  78. this.listObj[objKeyArr[i]].url = response.files.file
  79. this.listObj[objKeyArr[i]].hasSuccess = true
  80. return
  81. }
  82. }
  83. },
  84. handleRemove(file) {
  85. const uid = file.uid
  86. const objKeyArr = Object.keys(this.listObj)
  87. for (let i = 0, len = objKeyArr.length; i < len; i++) {
  88. if (this.listObj[objKeyArr[i]].uid === uid) {
  89. delete this.listObj[objKeyArr[i]]
  90. return
  91. }
  92. }
  93. },
  94. beforeUpload(file) {
  95. const _self = this
  96. const _URL = window.URL || window.webkitURL
  97. const fileName = file.uid
  98. this.listObj[fileName] = {}
  99. return new Promise((resolve) => {
  100. const img = new Image()
  101. img.src = _URL.createObjectURL(file)
  102. img.onload = function () {
  103. _self.listObj[fileName] = {
  104. hasSuccess: false,
  105. uid: file.uid,
  106. width: this.width,
  107. height: this.height,
  108. }
  109. }
  110. resolve(true)
  111. })
  112. },
  113. },
  114. }
  115. </script>
  116. <style lang="scss" scoped>
  117. .editor-slide-upload {
  118. margin-bottom: 20px;
  119. ::v-deep .el-upload--picture-card {
  120. width: 100%;
  121. }
  122. }
  123. </style>