From 436770fe348721d9bd9f2b150f70040b70d9882e Mon Sep 17 00:00:00 2001 From: taojinlong Date: Fri, 26 Nov 2021 11:39:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E9=9B=86):=20=E5=85=88?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E5=AE=9A=E6=97=B6=E5=90=8C=E6=AD=A5=E5=86=8D?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=95=B0=E6=8D=AE=E5=BA=93=E5=8F=AF=E5=AE=9E?= =?UTF-8?q?=E7=8E=B0=E4=B8=8D=E6=94=AF=E6=8C=81=E5=AE=9A=E6=97=B6=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E7=9A=84=E6=95=B0=E6=8D=AE=E5=BA=93=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/dataset/add/AddDB.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/frontend/src/views/dataset/add/AddDB.vue b/frontend/src/views/dataset/add/AddDB.vue index 50a7db4d03..ef82b31e8c 100644 --- a/frontend/src/views/dataset/add/AddDB.vue +++ b/frontend/src/views/dataset/add/AddDB.vue @@ -100,6 +100,7 @@ export default { for (let i = 0; i < this.options.length; i++) { if (this.options[i].id === val) { this.selectedDatasource = this.options[i] + this.mode = '0' } } } @@ -133,8 +134,6 @@ export default { }) }, save() { - // console.log(this.checkTableList); - // console.log(this.scene); let ds = {} this.options.forEach(ele => { if (ele.id === this.dataSource) { @@ -158,7 +157,6 @@ export default { }) }) post('/dataset/table/batchAdd', tables).then(response => { - // this.$store.dispatch('dataset/setSceneData', new Date().getTime()) this.$emit('saveSuccess', tables[0]) this.cancel() }) @@ -166,7 +164,6 @@ export default { cancel() { this.dataReset() - // this.$router.push('/dataset/home') this.$emit('switchComponent', { name: '' }) },