From 84978b8ada6ff5382e1622f5ebcf806b32e60552 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 28 Feb 2024 15:10:09 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B9=80=E0=B8=87=E0=B8=B4=E0=B8=99=E0=B9=80=E0=B8=94?= =?UTF-8?q?=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/SalaryLists/DialogFormEdit.vue | 11 +---------- .../components/SalaryLists/DialogMoveGroup.vue | 10 +++++++--- .../components/SalaryLists/DialogMoveLevel.vue | 14 +++++++++----- .../13_salary/components/SalaryLists/TabMain.vue | 1 + 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/modules/13_salary/components/SalaryLists/DialogFormEdit.vue b/src/modules/13_salary/components/SalaryLists/DialogFormEdit.vue index b81c553c1..342b1f64d 100644 --- a/src/modules/13_salary/components/SalaryLists/DialogFormEdit.vue +++ b/src/modules/13_salary/components/SalaryLists/DialogFormEdit.vue @@ -34,7 +34,7 @@ function close() { function onSubmit() { dialogConfirm($q, () => { - if (amount.value) { + if (amount.value !== null) { const amountString: string = amount.value.toString(); const body = { profileId: profileId.value, @@ -58,13 +58,6 @@ function onSubmit() { } }); } - -function inputEdit(val: boolean) { - return { - "full-width cursor-pointer inputgreen ": val, - "full-width cursor-pointer inputgreen": !val, - }; -}