diff --git a/src/components/05_quotation/FormAbout.vue b/src/components/05_quotation/FormAbout.vue index 46f065c0..db8071bc 100644 --- a/src/components/05_quotation/FormAbout.vue +++ b/src/components/05_quotation/FormAbout.vue @@ -63,7 +63,6 @@ async function init(val: string, type: 'branch' | 'customer') { }) : await customerStore.fetchListCustomeBranch({ query: val, - registeredBranchId: branchId.value || undefined, pageSize: 30, }); if (res) { @@ -91,15 +90,15 @@ onMounted(async () => { await init('', 'customer'); }); -watch( - () => branchId.value, - async (v) => { - if (v && customerBranchId.value && props.onCreate) { - console.log('form'); - customerBranchId.value = ''; - } - }, -); +// watch( +// () => branchId.value, +// async (v) => { +// if (v && customerBranchId.value && props.onCreate) { +// console.log('form'); +// customerBranchId.value = ''; +// } +// }, +// );