1
jhzh
2025-04-14 a5601fbcdc19292b32423bea88e67fc9ab4422a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;