เพิ่มเส้น report /แก้เปลี่ยนรูป

This commit is contained in:
STW_TTTY\stwtt 2024-09-11 11:41:50 +07:00
parent 895843d60d
commit 5c14d6f631
6 changed files with 42 additions and 61 deletions

View file

@ -9,6 +9,7 @@ export default {
evaluationMain: () => `${evaluation}`,
evaluateGetDetail: (id: string) => `${evaluation}/admin/check-spec/${id}`,
evaluateGetReport: (id: string) => `${evaluation}/report/check-spec-report/${id}`,
evaluateGetStep: (id: string) => `${evaluation}/check/admin/${id}`,
meeting: () => `${evaluation}/meeting`,

View file

@ -7,6 +7,7 @@ const report = `${env.API_REPORT_URI}/report/profile/`;
const organizationRoot = `${env.API_URI}/profile/organization/list/root`;
const registryNew = `${env.API_URI}/org/profile/`;
const avatarNew = `${env.API_URI}/org/profile`;
export default {
/**
* api
@ -219,4 +220,5 @@ export default {
`${profile}search/new-page/oc/${id}/officer?page=${page}&pageSize=${pageSize}`,
orgProfileAvatar: `${registryNew}avatar`,
orgProfileAvatarbyType:(type:string)=> `${avatarNew}${type}/avatar`,
};