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 @@