You've already forked DataMate
fix: 配比任务能够跳转到目标数据集 (#59)
* fix:配比任务需要能够跳转到目标数据集 * feature:增加配比任务详情接口 * fix:删除不存在的配比详情页面
This commit is contained in:
@@ -5,6 +5,11 @@ export function queryRatioTasksUsingGet(params?: any) {
|
||||
return get("/api/synthesis/ratio-task", params);
|
||||
}
|
||||
|
||||
// 查询配比任务详情
|
||||
export function getRatioTaskByIdUsingGet(id: string) {
|
||||
return get(`/api/synthesis/ratio-task/${id}`);
|
||||
}
|
||||
|
||||
// 创建配比任务
|
||||
export function createRatioTaskUsingPost(data: any) {
|
||||
return post("/api/synthesis/ratio-task", data);
|
||||
|
||||
Reference in New Issue
Block a user