This commit is contained in:
THK3121 2023-09-13 20:11:34 +08:00
parent 0811a659f0
commit cbecd61c64
2 changed files with 12 additions and 2 deletions

View File

@ -12,4 +12,14 @@ export function cloudWarehouse(data) {
*/
export function supMenuApi(data) {
return request.get('intention/v2/cate', data);
}
}
/**
* 获取购物车列表
*
*/
export function getCartList(data) {
return request.get("user/cart/lst", data);
}
export function getCartCounts(data) {
return request.get("user/cart/count", data);
}

View File

@ -346,7 +346,7 @@
getCartCounts,
getCartList,
} from '@/api/order.js';
} from '@/api/requesta.js';
import {
goShopDetail
} from '@/libs/order.js'