工作台

This commit is contained in:
lq
2025-06-23 09:38:09 +08:00
parent e51711304d
commit 7231bfe354

View File

@ -34,7 +34,12 @@ onMounted(() => {
getSuccessCaseList(); getSuccessCaseList();
}); });
const getProductList = async () => { const getProductList = async () => {
products.value = await fetchProductList(); const res = await fetchProductList();
if (res.code === 200) {
products.value = res.data;
}
// products.value = await fetchProductList();
// console.log('++++++', products.value);
}; };
const getSuccessCaseList = async () => { const getSuccessCaseList = async () => {