From d7bd2ffe87e1e82f74ae1545d7522d1dbc4cae13 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 20 Aug 2024 17:52:13 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=95=B0=E6=8D=AE=E6=BA=90):=20=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=95=B0=E6=8D=AE=E6=BA=90=E7=9A=84=E6=97=B6=E5=80=99?= =?UTF-8?q?=EF=BC=8C=E6=B2=A1=E6=9C=89=E8=A1=80=E7=BC=98=E6=9F=A5=E7=9C=8B?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=EF=BC=8C=E4=B8=94=E6=8A=A5404=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/api/datasource.ts | 2 +- .../src/components/visualization/OuterParamsSet.vue | 2 +- .../src/custom-component/pop-area/Component.vue | 2 +- core/core-frontend/src/locales/zh-CN.ts | 2 +- .../src/store/modules/data-visualization/dvMain.ts | 6 +++--- .../components/editor/drag-item/components/CompareEdit.vue | 2 +- .../chart/components/views/components/ChartComponentS2.vue | 2 +- .../src/views/dashboard/DashboardPreviewShow.vue | 2 +- .../src/views/data-visualization/PreviewShow.vue | 2 +- .../src/views/visualized/data/dataset/index.vue | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/core/core-frontend/src/api/datasource.ts b/core/core-frontend/src/api/datasource.ts index b2f8825d81..c1997c91c1 100644 --- a/core/core-frontend/src/api/datasource.ts +++ b/core/core-frontend/src/api/datasource.ts @@ -92,7 +92,7 @@ export const save = async (data = {}): Promise => { } export const perDeleteDatasource = async (id): Promise => { - return request.post({ url: `/datasource//perDelete/${id}`, data: {} }).then(res => { + return request.post({ url: `/datasource/perDelete/${id}`, data: {} }).then(res => { return res?.data }) } diff --git a/core/core-frontend/src/components/visualization/OuterParamsSet.vue b/core/core-frontend/src/components/visualization/OuterParamsSet.vue index 40e6034441..2298b24eb7 100644 --- a/core/core-frontend/src/components/visualization/OuterParamsSet.vue +++ b/core/core-frontend/src/components/visualization/OuterParamsSet.vue @@ -331,7 +331,7 @@ const nodeClick = data => { state.curNodeId = data.paramsInfoId } -// 获取当前视图字段 关联仪表板的视图信息列表 +// 获取当前图表字段 关联仪表板的图表信息列表 const getPanelViewList = dvId => { viewDetailList(dvId).then(rsp => { state.viewIdFieldArrayMap = {} diff --git a/core/core-frontend/src/custom-component/pop-area/Component.vue b/core/core-frontend/src/custom-component/pop-area/Component.vue index 2bcc706465..362535257f 100644 --- a/core/core-frontend/src/custom-component/pop-area/Component.vue +++ b/core/core-frontend/src/custom-component/pop-area/Component.vue @@ -1,5 +1,5 @@