From 1e42207fca1894093e1719beddf5a953a8dcea9d Mon Sep 17 00:00:00 2001 From: lichuanyang <1176537920@qq.com> Date: Mon, 23 Dec 2024 13:05:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=94=E4=BF=AE=E5=AE=A1=E6=A0=B8Api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/ECG/processManage/index.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/api/ECG/processManage/index.ts diff --git a/src/api/ECG/processManage/index.ts b/src/api/ECG/processManage/index.ts new file mode 100644 index 00000000..e3285677 --- /dev/null +++ b/src/api/ECG/processManage/index.ts @@ -0,0 +1,14 @@ +import request from '@/config/axios' + +/* + * 李传洋 + * ProcessManageApi + */ +export const ProcessManageApi = { + getPage: async (params: any) => { + return await request.get({ url: `/system/process/page`, params }) + }, + get: async (id: any) => { + return await request.get({ url: `/system/process/get?id=` + id }) + } +}