工作台
This commit is contained in:
@ -34,7 +34,12 @@ onMounted(() => {
|
||||
getSuccessCaseList();
|
||||
});
|
||||
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 () => {
|
||||
|
||||
Reference in New Issue
Block a user