This commit is contained in:
lxd 2024-12-23 15:10:45 +08:00
commit df662580d5

View File

@ -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 })
}
}