12345678910111213141516171819202122232425 |
- import service from '../utils/request.js'
- // 首页轮播图接口
- export function banner() {
- return service({
- url: '/indexImgs',
- method: 'get'
- })
- }
- // 公告接口
- export function notice() {
- return service({
- url: '/shop/notice/noticeList',
- method: 'get'
- })
- }
- // 商品信息
- export function product() {
- return service({
- url: '/prod/tagProdList',
- method: 'get'
- })
- }
|