建材商城系统20241014
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
412 B

// 登录相关接口
const api = {
// 获取banner
getBanner: {
url: '/index/getBanner',
method: 'GET',
},
// 获取菜单
getIcon: {
url: '/index/getIcon',
method: 'GET',
},
// 获取商品详情
getProductDetail: {
url: '/index/getProductDetail',
method: 'GET',
},
// 获取商品列表
getProductList: {
url: '/index/getProductList',
method: 'GET',
},
}
export default api