shop-web/src/common/apis/shop/index.ts

10 lines
250 B
TypeScript
Raw Normal View History

2025-03-05 09:22:29 +08:00
import { request } from "@/http/axios"
import { ShopGoodsResponseData } from './type'
/** 获取当前登录用户详情 */
export function getShopGoodsApi() {
return request<ShopGoodsResponseData>({
url: "shop/goods",
method: "get"
})
}