Browse Source

!1013 修复图片上传组件在同一页面中被多次引用时,仅有第一个组件拖拽功能生效的问题

Merge pull request !1013 from 稚屿/N/A
master
若依 10 months ago
committed by Gitee
parent
commit
ff3f3f2631
No known key found for this signature in database GPG Key ID: 173E9B9CA92EEF8F
  1. 2
      ruoyi-ui/src/components/ImageUpload/index.vue

2
ruoyi-ui/src/components/ImageUpload/index.vue

@ -104,7 +104,7 @@ export default {
mounted() {
if (this.drag) {
this.$nextTick(() => {
const element = document.querySelector('.el-upload-list')
const element = this.$refs.imageUpload?.$el?.querySelector('.el-upload-list')
Sortable.create(element, {
onEnd: (evt) => {
const movedItem = this.fileList.splice(evt.oldIndex, 1)[0]

Loading…
Cancel
Save