แก้ไขวินัย
This commit is contained in:
parent
be098be411
commit
99b1148d31
10 changed files with 34 additions and 21 deletions
|
|
@ -78,15 +78,26 @@ export default {
|
|||
|
||||
suspendReport: () => `${suspend}/report`,
|
||||
|
||||
reportresult: (id: string) => `${disciplineMain}/result/report/${id}`,
|
||||
discardResult:(id:string,commandType:string) => `${discipline}/discard/${id}/${commandType}`,
|
||||
upLoadFileResult:(id:string) => `${disciplineMain}/result/file/${id}`,
|
||||
deleteFileResult:(id:string,docId:string) => `${disciplineMain}/result/file/${id}/${docId}`,
|
||||
reportresult: (id: string, type: string) =>
|
||||
`${discipline}/suspend/${id}/${type}`,
|
||||
discardResult: (id: string, commandType: string) =>
|
||||
`${discipline}/discard/${id}/${commandType}`,
|
||||
upLoadFileResult: (id: string) => `${disciplineMain}/result/file/${id}`,
|
||||
deleteFileResult: (id: string, docId: string) =>
|
||||
`${disciplineMain}/result/file/${id}/${docId}`,
|
||||
|
||||
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}`,
|
||||
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}`
|
||||
|
||||
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