From e7d7239923be44dc94c7d190c05a37f1f0ffcd1e Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Thu, 28 Mar 2024 11:32:03 +0700 Subject: [PATCH] =?UTF-8?q?component=20=E0=B8=97=E0=B8=B0=E0=B9=80?= =?UTF-8?q?=E0=B8=9A=E0=B8=B5=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0?= =?UTF-8?q?=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/02_organizational/api.organization.ts | 2 + src/components/Dialogs/PopupPersonalNew.vue | 424 ++++++++++++++++++ .../interface/response/Information.ts | 2 +- 3 files changed, 427 insertions(+), 1 deletion(-) create mode 100644 src/components/Dialogs/PopupPersonalNew.vue diff --git a/src/api/02_organizational/api.organization.ts b/src/api/02_organizational/api.organization.ts index b497f4431..ec907dceb 100644 --- a/src/api/02_organizational/api.organization.ts +++ b/src/api/02_organizational/api.organization.ts @@ -84,4 +84,6 @@ export default { orgPosMoveEmp: `${orgEmployeePos}/move`, orgProfileEmp: `${orgEmployeePos}/profile`, orgSearchProfileEmp: `${orgProfile}-employee/search`, + + orgProfileById:(id:string)=>`${orgProfile}/${id}` }; diff --git a/src/components/Dialogs/PopupPersonalNew.vue b/src/components/Dialogs/PopupPersonalNew.vue new file mode 100644 index 000000000..3dedffa82 --- /dev/null +++ b/src/components/Dialogs/PopupPersonalNew.vue @@ -0,0 +1,424 @@ + + + + + diff --git a/src/components/information/interface/response/Information.ts b/src/components/information/interface/response/Information.ts index 53fda083a..65e4e7e80 100644 --- a/src/components/information/interface/response/Information.ts +++ b/src/components/information/interface/response/Information.ts @@ -27,7 +27,7 @@ interface PersonalImformation { firstName: string; lastName: string; birthDate: string | null; - age: string; + age: any; gender: string; }