inleft
2022-03-02 e33959d3ca88b9fae5f6fe1048c8a1f7751e6f21
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
26
27
28
29
30
31
32
33
34
35
36
/**
 * 系统应用
 *
 * @author yubaoshan
 * @date 2020年4月23日12:10:57
 */
import {
    axios
} from '../utils/request.js'
 
 
 
export function blogCommentAdd(parameter) {
    return axios({
        url: '/outside/blogComment/add',
        method: 'post',
        data: parameter
    })
}
 
 
export function queryBlogCommentList(parameter) {
    return axios({
        url: '/outside/blogComment/queryBlogCommentList',
        method: 'get',
        params: parameter
    })
}
 
export function queryBlogCommentSubList(parameter) {
    return axios({
        url: '/outside/blogComment/queryBlogCommentSubList',
        method: 'get',
        params: parameter
    })
}