// 首页相关接口 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