From afde232ab4dff55b62aa765f7bd8fb5ce05f7a2f Mon Sep 17 00:00:00 2001 From: Net Date: Thu, 29 Aug 2024 17:00:12 +0700 Subject: [PATCH] refactor: add countryCode --- src/pages/03_customer-management/constant.ts | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/pages/03_customer-management/constant.ts b/src/pages/03_customer-management/constant.ts index aded1094..c3da5f8c 100644 --- a/src/pages/03_customer-management/constant.ts +++ b/src/pages/03_customer-management/constant.ts @@ -1,5 +1,36 @@ import { QTableProps } from 'quasar'; +export const countryCode = [ + { + label: 'thai', + value: 'th', + }, + { + label: 'myanmar', + value: 'mm', + }, + { + label: 'laos', + value: 'lo', + }, + { + label: 'cambodian', + value: 'kh', + }, + { + label: 'vietnam', + value: 'vn', + }, + { + label: 'philippines', + value: 'ph', + }, + { + label: 'china', + value: 'cn', + }, +]; + export const uploadFileListCustomer: { label: string; value: string;