แก้ไขฟอร์มการสืบสวนข้อเท็จจริง
This commit is contained in:
parent
5ad7140335
commit
6f80fb2347
6 changed files with 474 additions and 381 deletions
|
|
@ -1,34 +1,32 @@
|
|||
|
||||
interface FormData {
|
||||
complaint: string
|
||||
complaintdetail: string
|
||||
detail: string
|
||||
fault: string
|
||||
results: string
|
||||
other: string
|
||||
evidenceFiles: File | null
|
||||
fileComplaint: File | null
|
||||
clickTime: boolean
|
||||
date: Date | null
|
||||
dateEnd: Date | null
|
||||
daysExtend: string
|
||||
investigation: string
|
||||
complaint: string;
|
||||
complaintdetail: string;
|
||||
detail: string;
|
||||
fault: string;
|
||||
other: string;
|
||||
evidenceFiles: File | null;
|
||||
fileComplaint: File | null;
|
||||
clickTime: boolean;
|
||||
date: Date | null;
|
||||
dateEnd: Date;
|
||||
daysExtend: number | null;
|
||||
investigation: string;
|
||||
statusResult: string;
|
||||
causeText: string;
|
||||
}
|
||||
interface MyObjectInvestigateRef {
|
||||
complaint: object | null;
|
||||
complaintdetail: object | null;
|
||||
detail: object | null;
|
||||
fault: object | null;
|
||||
results: object | null;
|
||||
evidenceFiles: object | null;
|
||||
fileComplaint: object | null;
|
||||
date: object | null;
|
||||
dateEnd: object | null;
|
||||
investigation: object | null;
|
||||
daysExtend: object | null;
|
||||
[key: string]: any;
|
||||
complaint: object | null;
|
||||
complaintdetail: object | null;
|
||||
detail: object | null;
|
||||
fault: object | null;
|
||||
evidenceFiles: object | null;
|
||||
fileComplaint: object | null;
|
||||
date: object | null;
|
||||
dateEnd: object | null;
|
||||
investigation: object | null;
|
||||
daysExtend: object | null;
|
||||
statusResult: object | null;
|
||||
causeText: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
export type {
|
||||
FormData,
|
||||
MyObjectInvestigateRef
|
||||
}
|
||||
export type { FormData, MyObjectInvestigateRef };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue