From 6165429964c79c831b85570d8bac6b67775846b0 Mon Sep 17 00:00:00 2001
From: whyczyk <525500596@qq.com>
Date: 星期五, 05 十一月 2021 15:14:12 +0800
Subject: [PATCH] 流程节点管理及动作管理提交

---
 src/pages/manage/js/api.js |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/pages/manage/js/api.js b/src/pages/manage/js/api.js
index 2a7cd32..fc93e58 100644
--- a/src/pages/manage/js/api.js
+++ b/src/pages/manage/js/api.js
@@ -31,4 +31,20 @@
     url: '/workflowProperty',
     data: data,
   });
+}
+//鏌ヨ鑺傜偣涓嬪姩浣�
+export const getActionTypeList = (params) => {
+  return axios({
+    method: 'GET',
+    url: '/workflowAction/actionTypeList',
+    params: params,
+  });
+}
+//淇敼鑺傜偣涓嬪姩浣�
+export const updateAction = (data) => {
+  return axios({
+    method: 'PUT',
+    url: '/workflowAction',
+    data: data,
+  });
 }
\ No newline at end of file

--
Gitblit v1.9.1