feat(xpack): 血缘分析

This commit is contained in:
dataeaseShu 2024-08-13 17:57:13 +08:00
parent 80fe3e5155
commit ed8dc2858f
2 changed files with 20 additions and 0 deletions

View File

@ -28,6 +28,7 @@
"axios": "^1.3.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"echarts": "^5.5.1",
"element-plus-secondary": "^0.6.1",
"element-resize-detector": "^1.2.4",
"exceljs": "^4.4.0",

View File

@ -0,0 +1,19 @@
import request from '@/config/axios'
export function getDatasourceRelationship(id) {
return request.post({
url: `/relation/datasource/${id}`
})
}
export function getDatasetRelationship(id) {
return request.post({
url: `/relation/dataset/${id}`
})
}
export function getPanelRelationship(id) {
return request.post({
url: `/relation/dv/${id}`
})
}