// 首页相关接口 const api = { /** * 获取banner图列表 */ queryBannerList: { url: '/index/queryBannerList', method: 'GET', }, /** * 获取论文分类列表 */ queryCategoryThesisList: { url: '/config/queryCategoryThesisList', method: 'GET', }, /** * 获取论文文章列表 */ queryThesisList: { url: '/index/queryThesisList', method: 'GET', }, /** * 获取论文文章详情 */ queryThesisById: { url: '/index/queryThesisById', method: 'GET', }, } export default api