From 73cbe36fc0d51af44ccac1016f869f9bf08ab827 Mon Sep 17 00:00:00 2001
From: gaoshp <291585735@qq.com>
Date: 星期五, 04 七月 2025 19:12:19 +0800
Subject: [PATCH] update

---
 src/api/flow/todolist.js |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/src/api/flow/todolist.js b/src/api/flow/todolist.js
index 9b8a7d3..bc743b3 100644
--- a/src/api/flow/todolist.js
+++ b/src/api/flow/todolist.js
@@ -1,7 +1,7 @@
 /*
  * @Date: 2025-06-12 22:38:05
  * @LastEditors: gaoshp
- * @LastEditTime: 2025-06-17 21:22:59
+ * @LastEditTime: 2025-07-01 23:38:48
  * @FilePath: /mdmweb/src/api/flow/todolist.js
  */
 import request from '@/axios';
@@ -29,4 +29,33 @@
     method: 'get',
     params,
   });
+}
+export const getAppList = (current, size, params) => {
+  return request({
+    url: '/blade-mdm/program/ncfile/programpickpage',
+    method: 'get',
+    params: {
+      ...params,
+      current,
+      size,
+    },
+  })
+}
+export const getSelectedAppList = processInstanceId => {
+  return request({
+    url: '/blade-mdm/program/ncfile/list-by-process',
+    method: 'get',
+    params: {
+      processInstanceId
+    },
+  })
+}
+export const getContent = id => {
+  return request({
+    url: '/blade-mdm/program/ncfile/content',
+    method: 'get',
+    params: {
+      id
+    },
+  })
 }
\ No newline at end of file

--
Gitblit v1.9.3