ปรับ UI หน้ารายละเอียดเรื่องร้องเรียน

This commit is contained in:
setthawutttty 2023-11-22 14:13:04 +07:00
parent f04826e05a
commit 30b420ae6c
3 changed files with 184 additions and 50 deletions

View file

@ -17,6 +17,7 @@ interface FormData {
personId: any
organizationId:string|null
respondentId:any
fileList:ArrayFileList[]
}
interface ArrayPerson {
@ -27,6 +28,12 @@ interface ArrayPerson {
salary: string,
organization: string,
}
interface ArrayFileList {
id:string
file:string
fileName:string
fileType:string
}
interface MyObjectComplaintsRef {
respondentType: object | null;
office: object | null;
@ -40,7 +47,6 @@ interface MyObjectComplaintsRef {
dateNotification: object | null;
complaintFrom: object | null;
appellant: object | null;
documentFile: object | null;
[key: string]: any;
}
@ -57,5 +63,6 @@ export type {
FormData,
MyObjectComplaintsRef,
DataAddRequest,
ArrayPerson
ArrayPerson,
ArrayFileList
}