inleft
2022-02-25 fc0c102554f509989dd74b199f298a67f266c3c8
commit | author | age
63af45 1 /**
I 2  * 系统应用
3  *
4  * @author yubaoshan
5  * @date 2020年4月23日12:10:57
6  */
7 import {
8     axios
9 } from '../utils/request.js'
10
11
12 /**
13  * 查询文章列表
14  *
15  */
16 export function statistics(parameter) {
17     return axios({
18         url: '/outside/blog/statistics',
19         method: 'get',
20         params: parameter
21     })
22 }
4b854c 23
I 24 export function archive() {
25     return axios({
26         url: '/outside/blog/archive',
27         method: 'get',
28     })
29 }
63f511 30
I 31 export function archiveGroup(parameter) {
32     return axios({
33         url: '/outside/blog/archiveGroup',
34         method: 'get',
35         params: parameter
36     })
37 }