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.
25 lines
488 B
25 lines
488 B
import Serve from '@/api/serve'
|
|
|
|
class College {
|
|
static college(data) {
|
|
return Serve.get(`/college`,data);
|
|
}
|
|
|
|
static getArticleList(data) {
|
|
return Serve.get(`/articleList`,data);
|
|
}
|
|
|
|
static getCategoryList() {
|
|
return Serve.get(`/categoryList`);
|
|
}
|
|
|
|
static getArticleDetail(data) {
|
|
return Serve.get(`/article/detail`,data);
|
|
}
|
|
|
|
static getRecommend() {
|
|
return Serve.get(`/recommend`);
|
|
}
|
|
}
|
|
|
|
export default College;
|