From ce11307a77a039a2f7c466ad712b5ebe39b49d18 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Fri, 22 Sep 2023 09:35:10 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=AA=E0=B8=AD=E0=B8=9A=E0=B8=84=E0=B8=B1?= =?UTF-8?q?=E0=B8=94=E0=B9=80=E0=B8=A5=E0=B8=B7=E0=B8=AD=E0=B8=81=E0=B8=96?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B9=80=E0=B8=A5=E0=B8=B7=E0=B8=AD=E0=B8=81?= =?UTF-8?q?=E0=B8=84=E0=B9=88=E0=B8=B2=E0=B8=8A=E0=B8=B3=E0=B8=A3=E0=B8=B0?= =?UTF-8?q?=E0=B9=80=E0=B8=9B=E0=B9=87=E0=B8=990=20=E0=B9=80=E0=B8=84?= =?UTF-8?q?=E0=B8=A5=E0=B8=B5=E0=B8=A2=E0=B8=A3=E0=B8=84=E0=B9=88=E0=B8=B2?= =?UTF-8?q?=20=E0=B9=80=E0=B8=A5=E0=B8=B7=E0=B8=AD=E0=B8=81=E0=B8=A7?= =?UTF-8?q?=E0=B8=B4=E0=B8=98=E0=B8=B5=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=8A?= =?UTF-8?q?=E0=B8=B3=E0=B8=A3=E0=B8=B0=E0=B9=80=E0=B8=87=E0=B8=B4=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../03_recruiting/views/02_qualify/PeriodAdd.vue | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/modules/03_recruiting/views/02_qualify/PeriodAdd.vue b/src/modules/03_recruiting/views/02_qualify/PeriodAdd.vue index 58d81888c..55f4aaf49 100644 --- a/src/modules/03_recruiting/views/02_qualify/PeriodAdd.vue +++ b/src/modules/03_recruiting/views/02_qualify/PeriodAdd.vue @@ -469,7 +469,7 @@
- เลือกวีธีการชำระเงิน + เลือกวิธีการชำระเงิน
@@ -479,6 +479,7 @@ val="payment1" color="blue" class="q-mr-md" + :disable="fee <= 0" /> @@ -500,6 +501,7 @@ val="payment2" color="blue" class="q-mr-md" + :disable="fee <= 0" /> @@ -1129,14 +1131,20 @@ const columnsPosition = ref([ }, ]); -watch(organizationShortName, (count: DataOption, prevCount: DataOption) => { +watch(organizationShortName, (count: any, prevCount: any) => { organizationNameOptions.value = []; }); -watch(organizationName, (count: DataOption, prevCount: DataOption) => { +watch(organizationName, (count: any, prevCount: any) => { positionPathOptions.value = []; }); +watch(fee, (count: any, prevCount: any) => { + if (fee.value <= 0) { + pay.value = ""; + } +}); + onMounted(async () => { hideLoader(); if (route.params.id != undefined) {