commit | author | age
|
ec97e0
|
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 |
export function blogCommentAdd(parameter) { |
|
14 |
return axios({ |
|
15 |
url: '/outside/blogComment/add', |
|
16 |
method: 'post', |
|
17 |
data: parameter |
|
18 |
}) |
|
19 |
} |
|
20 |
|
|
21 |
|
|
22 |
export function queryBlogCommentList(parameter) { |
|
23 |
return axios({ |
|
24 |
url: '/outside/blogComment/queryBlogCommentList', |
|
25 |
method: 'get', |
|
26 |
params: parameter |
|
27 |
}) |
|
28 |
} |
e33959
|
29 |
|
I |
30 |
export function queryBlogCommentSubList(parameter) { |
|
31 |
return axios({ |
|
32 |
url: '/outside/blogComment/queryBlogCommentSubList', |
|
33 |
method: 'get', |
|
34 |
params: parameter |
|
35 |
}) |
|
36 |
} |
00e46d
|
37 |
|
I |
38 |
export function history(parameter) { |
|
39 |
return axios({ |
|
40 |
url: '/outside/blogComment/history', |
|
41 |
method: 'get', |
|
42 |
params: parameter |
|
43 |
}) |
|
44 |
} |