立项配置数据入库、审计日志数据入库、编辑页UI界面美化、设备管理内容补充、审计日志显示优化
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { apiGet, apiPatch } from "./axios";
|
||||
|
||||
export const listProjectMilestones = (studyId: string) =>
|
||||
apiGet(`/api/v1/studies/${studyId}/project/milestones`);
|
||||
|
||||
export const updateProjectMilestone = (
|
||||
studyId: string,
|
||||
milestoneId: string,
|
||||
payload: Record<string, any>
|
||||
) => apiPatch(`/api/v1/studies/${studyId}/project/milestones/${milestoneId}`, payload);
|
||||
Reference in New Issue
Block a user