Pārlūkot izejas kodu

自动运行api

zhangliang2 3 gadi atpakaļ
vecāks
revīzija
c5ab60323c
1 mainītis faili ar 7 papildinājumiem un 1 dzēšanām
  1. 7 1
      src/api/workManagement.js

+ 7 - 1
src/api/workManagement.js

@@ -21,6 +21,9 @@ const selectAutomaticProject = basePart + '/simulationProject/selectAutomaticPro
 const addOrUpdateAutomaticProject = basePart + '/simulationProject/addOrUpdateAutomaticProject'; // 添加/编辑自动运行任务
 const updateAutomaticRunState = basePart + '/simulationProject/updateAutomaticRunState'; // 修改自动运行主任务状态
 const selectAutomaticProjectById = basePart + '/simulationProject/selectAutomaticProjectById'; // 根据id查询自动运行项目信息
+const selectSubProjectInfo = basePart + '/simulationProject/selectSubProjectInfo'; // 查询自动运行子工作信息
+const selectSubProjectList = basePart + '/simulationProject/selectSubProjectList'; // 查询自动运行子工作列表
+const createAutomaticSubProject = basePart + '/simulationProject/createAutomaticSubProject'; // 手动运行自动项目
 
 
 export default {
@@ -44,5 +47,8 @@ export default {
     selectAutomaticProject,
     addOrUpdateAutomaticProject,
     updateAutomaticRunState,
-    selectAutomaticProjectById
+    selectAutomaticProjectById,
+    selectSubProjectInfo,
+    selectSubProjectList,
+    createAutomaticSubProject
 }