吉光研途前端代码仓库
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.
 
 
 

34 lines
524 B

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