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/components/widget/DeWidget/DeSelectGrid.vue b/frontend/src/components/widget/DeWidget/DeSelectGrid.vue index 6d7b520c7b..b2d842e3b7 100644 --- a/frontend/src/components/widget/DeWidget/DeSelectGrid.vue +++ b/frontend/src/components/widget/DeWidget/DeSelectGrid.vue @@ -23,7 +23,9 @@
- {{ item.id }} + + {{ item.id }} +
@@ -209,6 +211,10 @@ export default { this.checkAll = checkedCount === this.datas.length this.isIndeterminate = checkedCount > 0 && checkedCount < this.datas.length this.changeValue(values) + }, + testChange(item) { + this.value = this.value === item.id ? null : item.id + this.changeRadioBox(this.value) } } 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) // 对路由变化作出响应... } },