fix bug
This commit is contained in:
parent
13e44d7c45
commit
7a54b6d9b2
7 changed files with 271 additions and 4 deletions
51
src/api/15_development/api.development.ts
Normal file
51
src/api/15_development/api.development.ts
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
import env from "../index";
|
||||
const development = `${env.API_URI}/development`;
|
||||
const developmentOrg = `${env.API_URI}/org`;
|
||||
const devScholarship = `${env.API_URI}/development/scholarship`;
|
||||
const developmentReport = `${env.API_URI}/development/report`;
|
||||
const devStrategy = `${env.API_URI}/development/strategy`;
|
||||
export default {
|
||||
development,
|
||||
/** history */
|
||||
developmentHistoryList: (type: string) =>
|
||||
`${development}/history/${type}/filter`,
|
||||
developmentHistoryListByid: (type: string, id: string) =>
|
||||
`${development}/history/${type}/${id}`,
|
||||
developmentHistoryAdd: (type: string) => `${development}/history/${type}`,
|
||||
developmentProjectSearch: () => `${development}/main/search`,
|
||||
developmentHistoryListOrg: (type: string, year: number) =>
|
||||
`${development}/history/${type}/org/${year}`,
|
||||
|
||||
/** history employee */
|
||||
developmentProjectSearchEmployee: () => `${developmentOrg}/profile-employee/`,
|
||||
|
||||
/** รายการโครงการ*/
|
||||
developmentMain: `${development}/main`,
|
||||
developmentMainById: (id: string) => `${development}/main/${id}`,
|
||||
developmentMainTab: (tab: string, id: string) =>
|
||||
`${development}/main/${tab}/${id}`,
|
||||
|
||||
/** ทุนการศึกษา/ฝึกอบรม*/
|
||||
devScholarship,
|
||||
devScholarshipByid: (id: string) => `${devScholarship}/${id}`,
|
||||
devScholarshipStatus: (id: string, status: string) =>
|
||||
`${devScholarship}/status/${id}/${status}`,
|
||||
|
||||
/** download File */
|
||||
developmentReportMain: () => `${developmentReport}/main`,
|
||||
developmentReportHistory: () => `${developmentReport}/history-officer`,
|
||||
developmentReportHistoryOfficer: () =>
|
||||
`${developmentReport}/history-employee`,
|
||||
developmentReportScholarship: () => `${developmentReport}/scholarship`,
|
||||
|
||||
// ปิดโครงการ
|
||||
developmentMainFinish: (id: string) => `${development}/main/finish/${id}`,
|
||||
// ข้อมูล status ของโครงการ
|
||||
developmentMainStatus: (id: string) => `${development}/main/status/${id}`,
|
||||
|
||||
/** โครงการ tab ข้อมูลเบื้องต้น */
|
||||
developmentBasicInfoById: (id: string) => `${development}/main/tab1/${id}`,
|
||||
|
||||
/**API ยุทธศาสตร์*/
|
||||
devStrategy,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue