CRM-合同:完善合同表单

This commit is contained in:
puhui999
2024-01-27 23:43:30 +08:00
parent 331b6c5611
commit 90e0baf5bc
3 changed files with 83 additions and 57 deletions

View File

@ -57,3 +57,8 @@ export const deleteContract = async (id: number) => {
export const exportContract = async (params) => {
return await request.download({ url: `/crm/contract/export-excel`, params })
}
// 提交审核
export const handleApprove = async (id: number) => {
return await request.put({ url: `/crm/contract/approve?id=${id}` })
}