feat: 模板列表获取,查看撤回操作,模板详情

This commit is contained in:
王熙东
2022-11-21 15:53:17 +08:00
parent 170c1a6d00
commit e60e62f1e1
4 changed files with 463 additions and 530 deletions

View File

@@ -14,4 +14,8 @@ export const moveTask = (obj) => http.post('/admin/project/template/moveTask',ob
// 新建或编辑阶段
export const editStage = (obj) => http.post('/admin/project/template/editStage',obj);
// 新建或编辑阶段任务
export const editTask = (obj) => http.post('/admin/project/template/editTask',obj);
export const editTask = (obj) => http.post('/admin/project/template/editTask',obj);
// 操作模板(撤回,发布,删除)
export const handleTemplates = (obj) => http.post('/admin/project/template/handle',obj);
// 模板库列表
export const templateList = (obj) => http.post(`/admin/project/template/list`,obj);