From 9b3625805a6b0222d32e6676acfcb58a35d1da38 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Mon, 5 Aug 2024 12:58:48 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1?= =?UTF-8?q?=E0=B8=95=E0=B8=B4=20=3D>=20=E0=B9=80=E0=B8=87=E0=B8=B4?= =?UTF-8?q?=E0=B8=99=E0=B9=80=E0=B8=94=E0=B8=B7=E0=B8=AD=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/TableView.vue | 4 +- .../detail/Salary/01_PositionSalary.vue | 56 ++++++++++++------- .../Salary/01_PositionSalaryHistory.vue | 2 +- .../detail/Salary/02_NotReceiveSalary.vue | 55 +++++++++--------- .../Salary/02_NotReceiveSalaryHistory.vue | 2 +- .../04_registryPerson/views/requestEdit.vue | 2 +- 6 files changed, 68 insertions(+), 53 deletions(-) diff --git a/src/modules/04_registryPerson/components/TableView.vue b/src/modules/04_registryPerson/components/TableView.vue index d653a61db..1a572faf0 100644 --- a/src/modules/04_registryPerson/components/TableView.vue +++ b/src/modules/04_registryPerson/components/TableView.vue @@ -229,7 +229,7 @@ watch( round flat dense - color="blue" + color="deep-purple" icon="mdi-history" @click="onClickHistory" > @@ -396,7 +396,7 @@ watch( - + diff --git a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue index 69c99c8e0..eb0d1756b 100644 --- a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue +++ b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue @@ -538,6 +538,13 @@ async function fetchOptionGroup() { onMounted(() => { fetchListSalary(); }); + +const classInput = (val: boolean) => { + return { + "full-width inputgreen cursor-pointer": val, + "full-width cursor-pointer": !val, + }; +};