From 23cecba75624d4c14a7d791841f58f254601319b Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Tue, 27 Jan 2026 16:48:52 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=B4=E0=B8=94=E0=B8=95=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=87=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7?= =?UTF-8?q?=E0=B8=B1=E0=B8=95=E0=B8=B4=E0=B8=95=E0=B8=B3=E0=B9=81=E0=B8=AB?= =?UTF-8?q?=E0=B8=99=E0=B9=88=E0=B8=87=E0=B9=84=E0=B8=9B=E0=B8=81=E0=B9=88?= =?UTF-8?q?=E0=B8=AD=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../10_registry/02_Government/07_Position.vue | 22 +++++++++---------- .../10_registry/tabs/02_government.vue | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/modules/10_registry/02_Government/07_Position.vue b/src/modules/10_registry/02_Government/07_Position.vue index 8ee5ed1..f981efb 100644 --- a/src/modules/10_registry/02_Government/07_Position.vue +++ b/src/modules/10_registry/02_Government/07_Position.vue @@ -27,7 +27,7 @@ const { } = useCounterMixin(); const checkType = ref( - dataPerson.officerType == "OFFICER" ? true : false + dataPerson.officerType == "OFFICER" ? true : false, ); // เช็คประเภทผู้ใช้งาน const mode = ref($q.screen.gt.xs); // เช็คขนาดหน้าจอ ถ้าเป็นขนาดใหญ่กว่า xs จะเป็นโหมดแสดงตาราง const isLoading = reactive({ @@ -320,25 +320,25 @@ const columns = computed(() => { (column) => column.name !== "positionExecutive" && column.name !== "lastUpdateFullName" && - column.name !== "lastUpdatedAt" + column.name !== "lastUpdatedAt", ); } } return baseColumns.value.filter( (e: QTableColumn) => - e.name !== "lastUpdateFullName" && e.name !== "lastUpdatedAt" + e.name !== "lastUpdateFullName" && e.name !== "lastUpdatedAt", ); }); const visibleColumns = ref( baseVisibleColumns.value.filter( - (e: string) => e !== "lastUpdateFullName" && e !== "lastUpdatedAt" - ) + (e: string) => e !== "lastUpdateFullName" && e !== "lastUpdatedAt", + ), ); const columnsHistory = computed(() => { if (!checkType.value) { if (baseColumns.value) { return baseColumns.value.filter( - (column) => column.name !== "positionExecutive" + (column) => column.name !== "positionExecutive", ); } } @@ -445,7 +445,7 @@ function onSearch() { rows.value = onSearchDataTable( filter.value, rowsData.value, - columns.value ? columns.value : [] + columns.value ? columns.value : [], ); } @@ -491,7 +491,7 @@ onMounted(async () => { -
+ -
+
- +