diff --git a/frontend/src/components/canvas/components/Editor/index.vue b/frontend/src/components/canvas/components/Editor/index.vue index 70d0ec478e..46ebd36679 100644 --- a/frontend/src/components/canvas/components/Editor/index.vue +++ b/frontend/src/components/canvas/components/Editor/index.vue @@ -1232,7 +1232,6 @@ export default { this.timeMachine = setTimeout(() => { if (index === this.changeIndex) { this.changeScale() - console.log('changeScale') } this.destroyTimeMachine() }, 1500) diff --git a/frontend/src/components/canvas/utils/utils.js b/frontend/src/components/canvas/utils/utils.js index 827671c69f..d5d4fa84fa 100644 --- a/frontend/src/components/canvas/utils/utils.js +++ b/frontend/src/components/canvas/utils/utils.js @@ -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) { diff --git a/frontend/src/views/dataset/data/ViewTable.vue b/frontend/src/views/dataset/data/ViewTable.vue index 145a0872ce..c6541c19a2 100644 --- a/frontend/src/views/dataset/data/ViewTable.vue +++ b/frontend/src/views/dataset/data/ViewTable.vue @@ -39,12 +39,6 @@ {{ $t('dataset.edit_union') }} - - - - - - @@ -62,8 +56,8 @@ - - + + diff --git a/frontend/src/views/panel/GrantAuth/user/index.vue b/frontend/src/views/panel/GrantAuth/user/index.vue index 1c8eaed21b..452ea0437d 100644 --- a/frontend/src/views/panel/GrantAuth/user/index.vue +++ b/frontend/src/views/panel/GrantAuth/user/index.vue @@ -88,7 +88,6 @@ export default { }, cancel() { - console.log('user cancel') }, buildRequest(rows) { const targetIds = rows.map(row => row.userId) diff --git a/frontend/src/views/panel/index.vue b/frontend/src/views/panel/index.vue index c3813c655b..c7df8bfb77 100644 --- a/frontend/src/views/panel/index.vue +++ b/frontend/src/views/panel/index.vue @@ -33,8 +33,6 @@ export default { }, watch: { $route(to, from) { - console.log(to) - console.log(from) // 对路由变化作出响应... } },