diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index f7e0745f..4f99f50e 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -612,6 +612,13 @@ async function searchEmployee(text: string) { ); if (retEmp) workerList.value = retEmp.data.result; } + +function storeDataLocal() { + localStorage.setItem( + 'quotation-preview', + JSON.stringify(quotationFormData.value), + ); +}