CRM-合同:新增合同预览审批流程和提交审核

This commit is contained in:
puhui999
2024-01-28 16:33:06 +08:00
parent 668da2fa86
commit 41195d5b4a
5 changed files with 266 additions and 3 deletions

View File

@ -32,7 +32,9 @@ export const getModelPage = async (params) => {
export const getModel = async (id: number) => {
return await request.get({ url: '/bpm/model/get?id=' + id })
}
export const getModelByKey = async (key: string) => {
return await request.get({ url: '/bpm/model/get-by-key?key=' + key })
}
export const updateModel = async (data: ModelVO) => {
return await request.put({ url: '/bpm/model/update', data: data })
}