普兆健康管家前端代码仓库
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.
 
 
 

41 lines
704 B

// 首页相关接口
const api = {
// Banner列表查询
getBanner: {
url: '/index/banner',
method: 'GET',
},
// 个性化推荐
getPersonalized: {
url: '/index/personalized',
method: 'GET',
},
// 普兆介绍->步骤条《左右滑动的内容》
getIntroduce: {
url: '/index/getIntroduce',
method: 'GET',
},
// 普兆介绍->视频介绍
getVideo: {
url: '/index/video',
method: 'GET',
},
// 推荐产品
getRecommendProduct: {
url: '/index/recommendProduct',
method: 'GET',
},
// 关于普兆
getAbout: {
url: '/index/about',
method: 'GET',
},
// 关于普兆详情
getAboutDetail: {
url: '/index/aboutDetail',
method: 'GET',
},
}
export default api