// 首页相关接口 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', }, /** * 生成二维码 */ getInviteCode: { url: '/config/getInviteCode', method: 'POST', }, } export default api