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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| import http from '@/http/api.js'
|
| export const getPage = (params) => {
| return http.request({
| url: '/blade-article/article/page',
| method: 'GET',
| params: {
| ...params
| }
| })
| }
|
| export const getDetail = (params) => {
| return http.request({
| url: '/blade-article/article/detail',
| method: 'GET',
| params: {
| ...params
| }
| })
| }
| export const getCategory = (params) => {
| return http.request({
| url: '/blade-system/dict-biz/child-list',
| method: 'GET',
| params: {
| ...params
| }
| })
| }
|
| //获取文章评论
| export const getCommentList = (params) => {
| return http.request({
| url: '/blade-articleComment/articleComment/page',
| method: 'GET',
| params: {
| ...params
| }
| })
| }
|
| //添加评论
| export const addComment = (params) => {
| return http.request({
| url: '/blade-articleComment/articleComment/save',
| method: 'POST',
| data: params
| })
| }
|
| // 添加积分数量
| export const addPointsNumber = (params) => {
| return http.request({
| url: '/blade-article/article/addNumber',
| method: 'POST',
| data: params
| })
| }
|
|