积分接口联调

This commit is contained in:
2024-03-21 23:22:24 +08:00
parent 792aa4268a
commit 4fb648f003
9 changed files with 67 additions and 33 deletions

View File

@@ -10,6 +10,6 @@ enum URL {
export const getCategoryList = () => get<CategoryBean>({ url: URL.categoryList });
export const getGoodsList = (params: any) => post<GoodsBean>({ url: URL.goodsList, data: params });
export const getGoodsList = (params: any) => get<GoodsBean>({ url: URL.goodsList, data: params });
export const getGoodsDetail = (goodsId: string) => get<GoodsBean>({ url: URL.goodsDetail + `?goodsId=${goodsId}` });