inleft
2022-02-20 28d46dfc072a13859a5c0bc4901645b77022c7c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * 系统应用
 *
 * @author yubaoshan
 * @date 2020年4月23日12:10:57
 */
import {
    axios
} from '../utils/request.js'
 
 
/**
 * 查询文章列表
 *
 */
export function statistics(parameter) {
    return axios({
        url: '/outside/blog/statistics',
        method: 'get',
        params: parameter
    })
}