no message

This commit is contained in:
STW_TTTY\stwtt 2024-05-15 16:46:25 +07:00
parent bc7fa07f1f
commit 2c2f5a3233
3 changed files with 113 additions and 74 deletions

View file

@ -15,6 +15,9 @@ export default {
file: (name: string, group: string, id: string) =>
`${url}/file/${name}/${group}/${id}`,
fileByPath: (name: string) =>
`${url}/file/${name}`,
fileByFile: (name: string, group: string, id: string, fileName: string) =>
`${url}/file/${name}/${group}/${id}/${fileName}`,
};

View file

@ -212,5 +212,8 @@ export default {
/**ปรับรายการเงินเดือนขึ้น-ลง*/
salarySwap: (dierction: string, id: string) =>
`${profile}salary/swap/${dierction}/${id}`,
listProfileNew:(id:string,page:number,pageSize:number)=>`${profile}search/new-page/oc/${id}/officer?page=${page}&pageSize=${pageSize}`
listProfileNew:(id:string,page:number,pageSize:number)=>`${profile}search/new-page/oc/${id}/officer?page=${page}&pageSize=${pageSize}`,
orgProfileAvatar:`${registryNew}avatar`
};