|                                                   |  | // 首页相关接口
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',	},	/**	 * 获取论文分类列表二	 */	queryCategoryThesisTwoList: {		url: '/config/queryCategoryThesisTwoList',		method: 'GET',	},	/**	 * 获取论文文章列表二	 */	queryThesisTwoList: {		url: '/index/queryThesisTwoList',		method: 'GET',	},	/**	 * 获取论文文章详情二	 */	queryThesisTwoById: {		url: '/index/queryThesisTwoById',		method: 'GET',	},	/**	 * 生成二维码	 */	getInviteCode: {		url: '/config/getInviteCode',		method: 'POST',	},}
export default api
 |