From 28d851f2479fb018293cc1b54e5862279583acb0 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Tue, 25 Jul 2023 14:30:29 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=84=E0=B9=89=E0=B8=99=E0=B8=AB=E0=B8=B2?= =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=97?= =?UTF-8?q?=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5=E0=B8=A2=E0=B8=99=E0=B8=9B?= =?UTF-8?q?=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4=20?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1=E0=B8=9F=E0=B8=B4?= =?UTF-8?q?=E0=B8=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../04_registry/components/TableProfile.vue | 89 +++++++++++++++++++ 1 file changed, 89 insertions(+) diff --git a/src/modules/04_registry/components/TableProfile.vue b/src/modules/04_registry/components/TableProfile.vue index 0b7cb8a80..0e722ed28 100644 --- a/src/modules/04_registry/components/TableProfile.vue +++ b/src/modules/04_registry/components/TableProfile.vue @@ -304,6 +304,77 @@ class="col-3" /> +
+ + + + + + + +
{ @@ -508,6 +585,15 @@ const updateEmployeeLevel = (value: string | number | null) => { const updatePosNo = (value: string | number | null) => { emit("update:posNo", value); }; +const updateReportYear = (value: string | number | null) => { + emit("update:reportYear", value); +}; +const updateReportNo = (value: string | number | null) => { + emit("update:reportNo", value); +}; +const updateReportType = (value: string | number | null) => { + emit("update:reportType", value); +}; // const updateProfileType = (value: string | number | null) => { // emit("update:profileType", value); // }; @@ -515,6 +601,9 @@ const updatePosNo = (value: string | number | null) => { const clearDate = () => { emit("update:retireYear", null); }; +const clearReportDate = () => { + emit("update:reportYear", null); +}; const clickSearchPanel = () => { emit("update:retireYear", null);