mirror of
https://github.com/dataease/dataease.git
synced 2026-05-19 10:18:11 +08:00
fix: 行权限未清除之前的选择
This commit is contained in:
@@ -1232,7 +1232,6 @@ export default {
|
||||
this.timeMachine = setTimeout(() => {
|
||||
if (index === this.changeIndex) {
|
||||
this.changeScale()
|
||||
console.log('changeScale')
|
||||
}
|
||||
this.destroyTimeMachine()
|
||||
}, 1500)
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user