fix: 修复题型拖拽移动问题 (#218)
This commit is contained in:
parent
df49b8f692
commit
b18677e709
@ -87,11 +87,17 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const checkEnd = ({ oldIndex, newIndex }) => {
|
const checkEnd = ({ oldIndex, newIndex }) => {
|
||||||
|
if (oldIndex !== newIndex) {
|
||||||
emit('changeSeq', {
|
emit('changeSeq', {
|
||||||
type: 'move',
|
type: 'move',
|
||||||
index: oldIndex,
|
index: newIndex,
|
||||||
range: newIndex - oldIndex
|
range: 0
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (props.currentEditOne === oldIndex) {
|
||||||
|
emit('select', newIndex)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const instance = getCurrentInstance()
|
const instance = getCurrentInstance()
|
||||||
|
Loading…
Reference in New Issue
Block a user