ImageUpload.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <div class="com-image-upload">
  3. <VueDraggable
  4. v-model="imageList"
  5. draggable=".image-item"
  6. class="flex items-start flex-wrap"
  7. @end="updateList"
  8. >
  9. <div
  10. v-for="(item, index) in imageList"
  11. :key="item.uid || index"
  12. class="image-item flex items-start"
  13. :style="{ width: width, height: height }"
  14. >
  15. <img
  16. :src="item.url"
  17. alt=""
  18. class=""
  19. />
  20. <div class="action-area flex items-center justify-center">
  21. <!-- 预览 -->
  22. <span
  23. v-if="!disablePreview"
  24. class="action-icon"
  25. @click="handlePictureCardPreview(item)"
  26. >
  27. <el-icon :size="32">
  28. <ZoomIn></ZoomIn>
  29. </el-icon>
  30. </span>
  31. <!-- 删除 -->
  32. <span
  33. class="action-icon"
  34. @click="handleRemove(index)"
  35. >
  36. <el-icon :size="32">
  37. <Delete></Delete>
  38. </el-icon>
  39. </span>
  40. </div>
  41. </div>
  42. <el-progress
  43. v-show="loading"
  44. type="circle"
  45. :percentage="uploadPercent"
  46. :width="Number(width.slice(0, width.length - 2))"
  47. style="margin: 8px"
  48. ></el-progress>
  49. <div
  50. class="upload-wrap"
  51. :class="{ hide: loading || imageList.length >= max }"
  52. :style="{ width: width, height: height }"
  53. >
  54. <el-upload
  55. ref="pictureUpload"
  56. :multiple="true"
  57. :limit="max"
  58. action=""
  59. drag
  60. accept=".jpg,.png,.jpeg"
  61. class="custom-upload-item"
  62. list-type="picture-card"
  63. :file-list="imageList"
  64. :show-file-list="false"
  65. :auto-upload="false"
  66. :on-preview="handlePictureCardPreview"
  67. :on-change="
  68. (file, fileList) => {
  69. handleUpload(file, fileList)
  70. }
  71. "
  72. >
  73. <el-icon :size="32">
  74. <Plus></Plus>
  75. </el-icon>
  76. </el-upload>
  77. </div>
  78. </VueDraggable>
  79. <el-dialog v-model="imageDialogVisible">
  80. <img
  81. width="100%"
  82. :src="imageUrl"
  83. alt=""
  84. />
  85. </el-dialog>
  86. </div>
  87. </template>
  88. <script lang="ts" setup>
  89. import { defineComponent, ref, watch } from 'vue'
  90. import { VueDraggable } from 'vue-draggable-plus'
  91. import { ElMessage, ElUpload, ElIcon, ElProgress, ElDialog } from 'element-plus'
  92. import { Plus, Delete, ZoomIn } from '@element-plus/icons-vue'
  93. import { cloneDeep } from 'lodash'
  94. import common from '@/api/common'
  95. defineComponent({
  96. name: 'ImageUpload',
  97. })
  98. const {
  99. max = 16,
  100. list = [],
  101. disablePreview = false,
  102. width = '150px',
  103. height = '150px',
  104. } = defineProps<{
  105. list: any[]
  106. max?: number
  107. disablePreview?: boolean
  108. width?: string
  109. height?: string
  110. }>()
  111. const $emit = defineEmits(['update:list'])
  112. // 组件内部数据.
  113. const imageList = ref([] as any[])
  114. const loading = ref(false)
  115. const uploadPercent = ref(0)
  116. watch(
  117. () => list,
  118. () => (imageList.value = cloneDeep(list)),
  119. )
  120. const handleUpload = (file: any, fileList: any[]) => {
  121. if (file.status === 'ready') {
  122. loading.value = true
  123. const interval = setInterval(() => {
  124. if (uploadPercent.value >= 99) {
  125. clearInterval(interval)
  126. return
  127. }
  128. uploadPercent.value += 1 // 进度条进度
  129. }, 100)
  130. }
  131. const formData = new FormData() as any
  132. fileList.forEach((file) => {
  133. formData.append('file', file.raw)
  134. })
  135. formData.append('type', 1)
  136. common
  137. .imagesUpload(formData)
  138. .then((response: any) => {
  139. if (response.result.code === 200) {
  140. imageList.value.push({
  141. url: response.result.data,
  142. uid: file.uid,
  143. })
  144. updateList()
  145. return
  146. }
  147. ElMessage.warning(response.result.message)
  148. })
  149. .catch((error) => {
  150. console.log(error, 'component upload image error')
  151. ElMessage.error(error.response.data.msg)
  152. })
  153. .finally(() => {
  154. loading.value = false
  155. // 进度条恢复到初始状态
  156. uploadPercent.value = 0
  157. })
  158. }
  159. const handleRemove = (index: number) => {
  160. imageList.value.splice(index, 1)
  161. updateList()
  162. }
  163. const imageDialogVisible = ref(false)
  164. // 预览大图的url, 每次点击都会更新
  165. const imageUrl = ref('')
  166. const handlePictureCardPreview = (file: any) => {
  167. imageUrl.value = file.url
  168. imageDialogVisible.value = true
  169. }
  170. // 每次更新imageList后手动更新父组件的数据, 不能用watch自动更新, 因为同时要watch prop值更新iamgeList, 同时watch会死循环.
  171. // 直接把prop数据绑定到dragable 和 el-upload的话vue和eslint会报错, 也可能造成调试困难
  172. const updateList = () => {
  173. $emit('update:list', cloneDeep(imageList.value))
  174. }
  175. </script>
  176. <style lang="scss" scoped>
  177. :deep(.el-upload) {
  178. border-style: solid;
  179. width: 100%;
  180. height: 100%;
  181. }
  182. :deep(.el-upload-dragger) {
  183. width: 100%;
  184. height: 100%;
  185. border: 0;
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. }
  190. .com-image-upload {
  191. vertical-align: top;
  192. }
  193. .image-item {
  194. overflow: hidden;
  195. position: relative;
  196. border: 1px solid #c0ccda;
  197. border-radius: 6px;
  198. margin-right: 8px;
  199. margin-bottom: 2px;
  200. img {
  201. width: 100%;
  202. }
  203. &:hover {
  204. .action-area {
  205. display: flex;
  206. }
  207. }
  208. .action-area {
  209. position: absolute;
  210. z-index: 1;
  211. left: 0;
  212. top: 0;
  213. display: none;
  214. width: 100%;
  215. height: 100%;
  216. background-color: rgba(0, 0, 0, 0.7);
  217. color: #fff;
  218. font-size: 32px;
  219. }
  220. .action-icon {
  221. cursor: pointer;
  222. & + .action-icon {
  223. margin-left: 16px;
  224. }
  225. }
  226. }
  227. .upload-wrap {
  228. display: inline-block;
  229. position: relative;
  230. margin-bottom: 2px;
  231. &.hide {
  232. display: none;
  233. }
  234. }
  235. .custom-upload-item {
  236. width: 100%;
  237. height: 100%;
  238. }
  239. </style>