diff --git a/src/pages/04_product-service/MainPage.vue b/src/pages/04_product-service/MainPage.vue index 57f06b56..74ec5849 100644 --- a/src/pages/04_product-service/MainPage.vue +++ b/src/pages/04_product-service/MainPage.vue @@ -195,6 +195,7 @@ const refImageUpload = ref>(); const inputSearch = ref(''); const inputSearchProductAndService = ref(''); +const inputSearchWorkProduct = ref(''); const currentStatusProduct = ref(false); const drawerInfo = ref(false); @@ -508,8 +509,9 @@ const onCreateImageList = ref<{ }>({ selectedImage: '', list: [] }); async function searchProduct(isAdd: boolean = true) { + console.log('spd'); const res = await fetchListProduct({ - query: inputSearchProductAndService.value, + query: inputSearchWorkProduct.value, }); if (res) { @@ -1287,7 +1289,6 @@ async function fetchStatus() { async function alternativeFetch() { if (productAndServiceTab.value === 'product') { await fetchListOfProduct(); - flowStore.rotate(); } if (productAndServiceTab.value === 'service') { @@ -1532,9 +1533,6 @@ watch(