Add Detail Page exams_other
This commit is contained in:
parent
b8d0a5230c
commit
dc5a817160
27 changed files with 6422 additions and 34 deletions
|
|
@ -5,8 +5,10 @@ interface DataOption {
|
|||
disable?: boolean;
|
||||
}
|
||||
|
||||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
interface DataOptionInsignia {
|
||||
id: string;
|
||||
name: string;
|
||||
typeName: string;
|
||||
}
|
||||
|
||||
interface EduOps {
|
||||
|
|
@ -14,6 +16,7 @@ interface EduOps {
|
|||
positionPathOptions: DataOption[];
|
||||
}
|
||||
|
||||
|
||||
interface InformationOps {
|
||||
prefixOps: DataOption[];
|
||||
genderOps: DataOption[];
|
||||
|
|
@ -32,6 +35,13 @@ interface AddressOps {
|
|||
subdistrictCOps: zipCodeOption[];
|
||||
}
|
||||
|
||||
interface InsigniaOps {
|
||||
insigniaOptions: DataOptionInsignia[];
|
||||
}
|
||||
|
||||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface treeTab {
|
||||
id: string;
|
||||
|
|
@ -39,4 +49,13 @@ interface treeTab {
|
|||
children: treeTab[];
|
||||
}
|
||||
|
||||
export type { DataOption, treeTab, InformationOps, AddressOps, Pagination, EduOps };
|
||||
export type {
|
||||
DataOption,
|
||||
DataOptionInsignia,
|
||||
treeTab,
|
||||
InformationOps,
|
||||
AddressOps,
|
||||
Pagination,
|
||||
EduOps,
|
||||
InsigniaOps
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue