From 544b8c1998c344bd9f870cb3efd10e0ae0d61731 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Mon, 11 Mar 2024 14:35:03 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9?= =?UTF-8?q?=E0=B8=A5=E0=B8=A3=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2=E0=B8=A3?= =?UTF-8?q?(=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95?= =?UTF-8?q?=E0=B8=B4=E0=B8=A3=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2=E0=B8=A3?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail/GovernmentInformation/01_Info.vue | 768 +++++++++++++++++- .../interface/index/government.ts | 28 + 2 files changed, 794 insertions(+), 2 deletions(-) create mode 100644 src/modules/04_registryNew/interface/index/government.ts diff --git a/src/modules/04_registryNew/components/detail/GovernmentInformation/01_Info.vue b/src/modules/04_registryNew/components/detail/GovernmentInformation/01_Info.vue index 94f83fdf0..a5e544100 100644 --- a/src/modules/04_registryNew/components/detail/GovernmentInformation/01_Info.vue +++ b/src/modules/04_registryNew/components/detail/GovernmentInformation/01_Info.vue @@ -1,6 +1,770 @@ - + diff --git a/src/modules/04_registryNew/interface/index/government.ts b/src/modules/04_registryNew/interface/index/government.ts new file mode 100644 index 000000000..df450a86c --- /dev/null +++ b/src/modules/04_registryNew/interface/index/government.ts @@ -0,0 +1,28 @@ +interface MyObjectRef { + containDate: object | null; + workDate: object | null; + reasonSameDate: object | null; + [key: string]: any; +} + +interface RequestItemsHistoryObject { + oc: string | null; + position: string | null; + positionPathSide: string | null; + posNo: string | null; + positionLine: string | null; + positionType: string | null; + positionLevel: string | null; + positionExecutive: string | null; + positionExecutiveSide: string | null; + dateAppoint: Date; + dateStart: Date; + retireDate: string | null; + govAge: string | null; + govAgeAbsent: string | null; + govAgePlus: string | null; + reasonSameDate: string | null; + createdFullName: string | null; + createdAt: Date; + } +export type { MyObjectRef,RequestItemsHistoryObject };