อุทธรณ์ร้องทุกข์
This commit is contained in:
parent
7777b27cda
commit
c1f26bc764
12 changed files with 1139 additions and 308 deletions
12
src/api/appeal/api.appeal.ts
Normal file
12
src/api/appeal/api.appeal.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import env from "../index"
|
||||
|
||||
const appeal = `${env.API_URI}/discipline/complaint_appeal`
|
||||
const profile = `${env.API_URI}/profile/keycloak`
|
||||
|
||||
export default {
|
||||
profileBykeycloak:()=>`${profile}`,
|
||||
appealMainList:(status: string, type: string, year: number, page: number, pageSize: number, keyword: string)=>`${appeal}/user?status=${status}&type=${type}&year=${year}&page=${page}&pageSize=${pageSize}&keyword=${keyword}`,
|
||||
appealAdd:()=>`${appeal}`,
|
||||
|
||||
appealByID:(id:string)=>`${appeal}/${id}`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue