Explorar o código

移动端工作流方法提交

chenjun hai 1 ano
pai
achega
8b6f5be123
Modificáronse 1 ficheiros con 16 adicións e 0 borrados
  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{
+        
+     }
+}