From 6039aea35957fd8e8335274dc11bb98afaac259c Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Mon, 21 Oct 2024 09:24:50 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82?= =?UTF-8?q?=E0=B8=84=E0=B8=B3=E0=B8=9C=E0=B8=B4=E0=B8=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Workflow/Main.vue | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/Workflow/Main.vue b/src/components/Workflow/Main.vue index cc3c2b9..7a647f4 100644 --- a/src/components/Workflow/Main.vue +++ b/src/components/Workflow/Main.vue @@ -161,7 +161,6 @@ defineExpose({ >{{ `${item.prefix}${item.firstName} ${item.lastName}` }} - {{ item.isReasonSetting ? item.reason : "" @@ -169,19 +168,23 @@ defineExpose({ - + {{ item.isAcceptSetting ? item.isAccept ? "รับทราบ" : "" : item.isApproveSetting - ? item.isApprove - ? "อนุมันติ" + ? item.isApprove === true + ? "อนุมัติ" + : item.isApprove === false + ? "ไม่อนุมัติ" : "" : "" - }} + }} +