| 12345678910111213141516171819202122232425 |
- import Serve from '@/api/serve'
- class College {
- static college() {
- return Serve.get(`/college`);
- }
- 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;
|