12345678910111213141516171819202122 |
- import service from '../utils/request'
- // 首页轮播图接口
- export function banner() {
- return service({
- url: '/indexImgs',
- method: 'get'
- })
- }
- // 通知栏
- export function notice() {
- return service({
- url: '/shop/notice/noticeList',
- method: 'get'
- })
- }
- // 商品列表
- export function prod() {
- return service({
- url:"/prod/tagProdList",
- method:"get"
- })
- }
|