合规性手续模版新增

This commit is contained in:
ljx
2025-08-27 18:52:12 +08:00
parent 6e53520a33
commit 2c9c72d714
3 changed files with 70 additions and 2 deletions

View File

@ -75,3 +75,12 @@ export const getWhetherItExists = (id: string | number): AxiosPromise<ListOfForm
}
});
};
//模版新增
export const addFormalities = (data: any): AxiosPromise<ListOfFormalitiesVO> => {
return request({
url: '/formalities/formalitiesAreConsolidated/addFormalities',
method: 'post',
data
});
};