From 2d8c4d5d6a93239e9e47487a79ac1e77075e541b Mon Sep 17 00:00:00 2001 From: Net Date: Tue, 16 Jul 2024 13:24:10 +0700 Subject: [PATCH] =?UTF-8?q?refactor:=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1=20=20action=20=E0=B8=82=E0=B8=AD=E0=B8=87=20?= =?UTF-8?q?=20columns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/03_customer-management/MainPage.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index b95ee488..bdf65736 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -129,6 +129,12 @@ const columnsEmployee = [ field: 'type', sortable: true, }, + + { + name: 'action', + label: '', + field: 'action', + }, ] satisfies QTableProps['columns']; const columnsCustomer = [ @@ -319,6 +325,7 @@ const fieldSelected = ref< | 'formDialogEmployeeNRCNo' | 'formDialogInputAge' | 'branchLabel' + | 'action' )[] >([ 'customerName', @@ -333,6 +340,7 @@ const fieldSelected = ref< 'formDialogEmployeeNRCNo', 'formDialogInputAge', 'branchLabel', + 'action', ]); const splitterModel = ref(15);