工作台
This commit is contained in:
@ -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 () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user