home.js 387 B

12345678910111213141516171819202122232425
  1. import service from '../utils/request.js'
  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 product() {
  18. return service({
  19. url: '/prod/tagProdList',
  20. method: 'get'
  21. })
  22. }