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
37
38
39
40
41
42
43
44
| /**
| * 系统应用
| *
| * @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
| })
| }
|
| export function history(parameter) {
| return axios({
| url: '/outside/blogComment/history',
| method: 'get',
| params: parameter
| })
| }
|
|