From f3f2fcb15f81128fdfadd2e97f88b0c66b1bb0ef Mon Sep 17 00:00:00 2001 From: Jiang Peng <2622360564@qq.com> Date: Sun, 5 May 2024 15:38:57 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E8=B5=84?= =?UTF-8?q?=E4=BA=A7=E6=8E=88=E6=9D=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/etl/data.js | 7 ++ src/components/Encoding/index.vue | 111 +++++++++++++++++++++ src/views/etl/assetAuthorization/index.vue | 108 +++++++++++--------- src/views/etl/datasource/index.vue | 24 +---- 4 files changed, 185 insertions(+), 65 deletions(-) create mode 100644 src/components/Encoding/index.vue diff --git a/src/api/etl/data.js b/src/api/etl/data.js index a50df65..7da3406 100644 --- a/src/api/etl/data.js +++ b/src/api/etl/data.js @@ -42,3 +42,10 @@ export function delData(id) { method: 'delete' }) } + +export function delById(id) { + return request({ + url: '/etl/data/delById?id=' + id, + method: 'post' + }) +} diff --git a/src/components/Encoding/index.vue b/src/components/Encoding/index.vue new file mode 100644 index 0000000..0575987 --- /dev/null +++ b/src/components/Encoding/index.vue @@ -0,0 +1,111 @@ + + + + + diff --git a/src/views/etl/assetAuthorization/index.vue b/src/views/etl/assetAuthorization/index.vue index e7f60e6..faedb1a 100644 --- a/src/views/etl/assetAuthorization/index.vue +++ b/src/views/etl/assetAuthorization/index.vue @@ -1,18 +1,17 @@