inleft
2022-02-21 4b854c29227ef08ea178a3bba527a40ca2f84674
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 }