1
0

home.js 386 B

12345678910111213141516171819202122
  1. import service from '../utils/request'
  2. // 首页轮播图接口
  3. export function banner() {
  4. return service({
  5. url: '/indexImgs',
  6. method: 'get'
  7. })
  8. }
  9. // 通知栏
  10. export function notice() {
  11. return service({
  12. url: '/shop/notice/noticeList',
  13. method: 'get'
  14. })
  15. }
  16. // 商品列表
  17. export function prod() {
  18. return service({
  19. url:"/prod/tagProdList",
  20. method:"get"
  21. })
  22. }