Form Evaluate,Saveresult

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-07-27 16:59:07 +07:00
parent 99f56a89f2
commit 9796c301cb
5 changed files with 1609 additions and 377 deletions

View file

@ -4,12 +4,9 @@ const retirement = `${env.API_URI}/retirement`
export default {
profile: (type: string, year: string) => `${retirement}/profile/${type}/${year}`,
profileRetire: (retireId: string) => `${retirement}/profile/${retireId}`,
profileRetire: (retireProfileId: string) => `${retirement}/profile/${retireProfileId}`,
listRetire: (retireId: string) => `${retirement}/${retireId}`,
createnote: () => `${retirement}/reason`,
reasonId: (retireId:string) => `${retirement}/reason/${retireId}`,
retirement:(type:string,year:string) => `${retirement}/${type}/${year}`
};