actions.js
1.03 KB
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
export default {
async followUser(actions, {followUid, status}) {
const result = await this.$api.get('/api/grass/updateAttention', {
followUid,
status,
attentionType: 1
});
return result;
},
async followTopic(actions, {topicId, status}) {
const result = await this.$api.get('/api/grass/updateAttention', {
topicId,
status,
attentionType: 0
});
return result;
},
async followArticle(actions, {articleId, status}) {
const result = await this.$api.get('/api/grass/updateFavorite', {
articleId,
isAdd: status ? 'Y' : 'N'
});
return result;
},
async praiseArticle(actions, {articleId, status}) {
const result = await this.$api.get('/api/grass/updateArticlePraise', {
articleId,
status: status ? 0 : 1
});
return result;
},
async praiseComment(actions, {commentId, status}) {
const result = await this.$api.get('/api/grass/updateCommentPraise', {
commentId,
status: status ? 0 : 1
});
return result;
},
};