shopApi.js 296 B

1234567891011121314151617181920212223
  1. import {
  2. request
  3. } from "./http.js";
  4. //商品推荐
  5. function recom() {
  6. return request({
  7. url: "/goods/recommend",
  8. method: "post",
  9. });
  10. }
  11. //商品详情
  12. function detail(data) {
  13. return request({
  14. url: "/goods/detail/" + data,
  15. method: "get",
  16. data: data,
  17. });
  18. }
  19. export {
  20. recom,
  21. detail
  22. }