From 35cf33e6675a44fbeb6066e62fe5ef1592d7c638 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Wed, 4 Dec 2024 18:00:36 +0700 Subject: [PATCH] =?UTF-8?q?UI=20=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=87?= =?UTF-8?q?=E0=B8=B2=E0=B8=99=E0=B8=AA=E0=B8=96=E0=B8=B4=E0=B8=95=E0=B8=B4?= =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=82?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B8=A3=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=20=E0=B8=81=E0=B8=97=E0=B8=A1.=20=E0=B8=AA=E0=B8=B2?= =?UTF-8?q?=E0=B8=A1=E0=B8=B1=E0=B8=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/02_organizational/api.organization.ts | 3 + .../components/TableView.vue | 209 +++++++++++++++++- .../interface/request/Main.ts | 5 + 3 files changed, 212 insertions(+), 5 deletions(-) diff --git a/src/api/02_organizational/api.organization.ts b/src/api/02_organizational/api.organization.ts index 564ec057e..ad8eecca0 100644 --- a/src/api/02_organizational/api.organization.ts +++ b/src/api/02_organizational/api.organization.ts @@ -7,6 +7,7 @@ const orgEmployeePos = `${env.API_URI}/org/employee/pos`; const orgAct = `${env.API_URI}/org/act`; const orgPosAct = `${env.API_URI}/org/pos/act`; const workflow = `${env.API_URI}/org/workflow`; +const reportOrg = `${env.API_URI}/org/report`; export default { keycloakPosition: () => `${organization}/profile/keycloak/position`, @@ -155,4 +156,6 @@ export default { positionCondition: `${orgPos}/master/position-condition`, keycloakLogSSO: `${organization}/keycloak/log/sso`, + + reportOrgByType:(type:string)=>`${reportOrg}/registry-${type}` }; diff --git a/src/modules/04_registryPerson/components/TableView.vue b/src/modules/04_registryPerson/components/TableView.vue index 3e779b70c..aec0c46ef 100644 --- a/src/modules/04_registryPerson/components/TableView.vue +++ b/src/modules/04_registryPerson/components/TableView.vue @@ -1,21 +1,44 @@