ui หน้าสมัครสอบ
This commit is contained in:
parent
03b6076835
commit
792f30d606
48 changed files with 2845 additions and 43 deletions
28
src/modules/01_exam/interface/request/Work.ts
Normal file
28
src/modules/01_exam/interface/request/Work.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
interface DataProps {
|
||||
row: RequestItemsObject;
|
||||
rowIndex: number;
|
||||
}
|
||||
|
||||
//ข้อมูล
|
||||
interface RequestItemsObject {
|
||||
id: string;
|
||||
start: Date;
|
||||
end: Date;
|
||||
detail: string;
|
||||
reference: string;
|
||||
}
|
||||
|
||||
//columns
|
||||
interface Columns {
|
||||
[index: number]: {
|
||||
name: String;
|
||||
align: String;
|
||||
label: String;
|
||||
sortable: Boolean;
|
||||
field: String;
|
||||
headerStyle: String;
|
||||
style: String;
|
||||
};
|
||||
}
|
||||
|
||||
export type { RequestItemsObject, Columns, DataProps };
|
||||
Loading…
Add table
Add a link
Reference in a new issue