รายการอุทธรณ์ร้องทุกข์
This commit is contained in:
parent
c65ac3cba6
commit
50b8f028b6
10 changed files with 885 additions and 207 deletions
|
|
@ -3,6 +3,7 @@ const disciplineMain = `${env.API_URI}/discipline`;
|
|||
const discipline = `${env.API_URI}/discipline/disciplinary`;
|
||||
const investigate = `${env.API_URI}/discipline/investigate`;
|
||||
const suspend = `${env.API_URI}/discipline/suspend`;
|
||||
const appeal = `${env.API_URI}/discipline/complaint_appeal`;
|
||||
|
||||
export default {
|
||||
directorList: (page: number, pageSize: number, keyword: string) =>
|
||||
|
|
@ -77,4 +78,12 @@ export default {
|
|||
suspendReport: () => `${suspend}/report`,
|
||||
|
||||
reportresult: (id: string) => `${disciplineMain}/result/report/${id}`,
|
||||
|
||||
|
||||
appealMainList: (status: string, type: string, year: number, page: number, pageSize: number, keyword: string) => `${appeal}/admin?status=${status}&type=${type}&year=${year}&page=${page}&pageSize=${pageSize}&keyword=${keyword}`,
|
||||
appealAdd: () => `${appeal}`,
|
||||
appealByID: (id:string) => `${appeal}/${id}`,
|
||||
appealUpLoadFile: (id:string) => `${appeal}/file/${id}`,
|
||||
appealDeleteFile: (id:string,docId:string) => `${appeal}/file/${id}/${docId}`
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue