返修审核Api

This commit is contained in:
旺仔 2024-12-23 13:05:53 +08:00
parent 1b873209f3
commit 1e42207fca

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