// 其他相关接口
|
|
|
|
const api = {
|
|
/**
|
|
* 其他-获取其他模块文章列表
|
|
*/
|
|
queryOtherArticleList: {
|
|
url: '/index/queryOtherArticleList',
|
|
method: 'GET',
|
|
},
|
|
/**
|
|
* 其他-获取其他模块文章详情
|
|
*/
|
|
queryOtherArticleById: {
|
|
url: '/index/queryOtherArticleById',
|
|
method: 'GET',
|
|
},
|
|
}
|
|
|
|
export default api
|