Merge pull request #11529 from dataease/pr@dev-v2_st

feat(xpack): 血缘分析
This commit is contained in:
dataeaseShu 2024-08-13 17:59:01 +08:00 committed by GitHub
commit e7f7ab174b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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}`
})
}