Browse Source

移动端工作流方法提交

chenjun 1 năm trước cách đây
mục cha
commit
8b6f5be123
1 tập tin đã thay đổi với 16 bổ sung0 xóa
  1. 16 0
      client_h5/src/utils/flow.ts

+ 16 - 0
client_h5/src/utils/flow.ts

@@ -0,0 +1,16 @@
+import reqest from "@/utils/request";
+
+export interface FlowVO {
+    activityInstanceId: string
+    participantId: string
+    flowOpinion: string
+}
+
+/**
+ * 获取下一步活动
+ * **/
+export const getNextActivity = (data: FlowVO) => {
+     reqest.post(`/workflow/Transfer/getNextActivity`, data).then{
+        
+     }
+}