新增图谱功能及验收清单
This commit is contained in:
33
ruoyi-ui/src/api/ccdi/graph/fundGraph.js
Normal file
33
ruoyi-ui/src/api/ccdi/graph/fundGraph.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function searchFundGraphSubjects(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/fund-graph/search",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function getFundGraph(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/fund-graph/graph",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function getFundGraphEdgeDetail(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/fund-graph/edge-detail",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function saveFundGraphManualEdge(data) {
|
||||
return request({
|
||||
url: "/ccdi/project/fund-graph/manual-edge",
|
||||
method: "post",
|
||||
data,
|
||||
});
|
||||
}
|
||||
25
ruoyi-ui/src/api/ccdi/graph/relationGraph.js
Normal file
25
ruoyi-ui/src/api/ccdi/graph/relationGraph.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
export function searchRelationGraphSubjects(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/relation-graph/search",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function getRelationGraph(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/relation-graph/graph",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
|
||||
export function getRelationGraphSuspectedEnterprises(query) {
|
||||
return request({
|
||||
url: "/ccdi/project/relation-graph/suspected-enterprises",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user