fix: 行权限未清除之前的选择

This commit is contained in:
taojinlong
2021-12-28 16:52:51 +08:00
parent f90466bc23
commit 1e0d699afd
5 changed files with 2 additions and 14 deletions

View File

@@ -1232,7 +1232,6 @@ export default {
this.timeMachine = setTimeout(() => {
if (index === this.changeIndex) {
this.changeScale()
console.log('changeScale')
}
this.destroyTimeMachine()
}, 1500)

View File

@@ -21,11 +21,9 @@ export function deepCopy(target) {
}
export function swap(arr, i, j) {
console.log('before:' + i + '-->' + j + JSON.stringify(arr))
const temp = arr[i]
arr[i] = arr[j]
arr[j] = temp
console.log('after:' + JSON.stringify(arr))
}
export function moveUp(arr, i) {