From 42d4063e6970fa5b2072f53ae72491230fa39ecb Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Wed, 6 Nov 2024 17:39:02 +0700 Subject: [PATCH] refactor: add btn form --- src/pages/05_quotation/QuotationForm.vue | 194 +++++++++++++++-------- 1 file changed, 130 insertions(+), 64 deletions(-) diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index a706e246..14b93fcf 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -42,6 +42,7 @@ import { } from 'src/stores/product-service/types'; // NOTE: Import Components +import SelectInput from 'components/shared/SelectInput.vue'; import SwitchItem from 'components/shared/SwitchItem.vue'; import FormEmployeePassport from 'components/03_customer-management/FormEmployeePassport.vue'; import FormEmployeeVisa from 'components/03_customer-management/FormEmployeeVisa.vue'; @@ -121,6 +122,9 @@ const { data: config } = storeToRefs(configStore); const receiptList = ref([]); +const templateForm = ref(''); +const templateFormOption = ref<{ label: string; value: string }[]>([]); + const refSelectZoneEmployee = ref>(); const mrz = ref>>(); const toggleWorker = ref(true); @@ -1122,6 +1126,70 @@ const view = ref(View.Quotation);
{{ value.title }}
+ + + + +
+ + + +
+
+