1234567891011121314151617181920212223 |
- import {
- request
- } from "./http.js";
- //商品推荐
- function recom() {
- return request({
- url: "/goods/recommend",
- method: "post",
- });
- }
- //商品详情
- function detail(data) {
- return request({
- url: "/goods/detail/" + data,
- method: "get",
- data: data,
- });
- }
- export {
- recom,
- detail
- }
|