opt.js
2.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/**
* 逛操作models
* @author: chenfeng<feng.chen@yoho.cn>
* @date: 2016/09/07
*/
'use strict';
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* [逛资讯点赞/取消赞]
* @param {[int]} udid [唯一客户端标识]
* @param {[int]} id [唯一资讯的ID]
* @param {[string]} opt [操作(ok:表示确定,cancel:表示取消)]
* @return {[array]}
*/
praiseArticle(udid, id, opt) {
let param = {
article_id: id,
udid: udid
};
if (opt === 'cancel') {
return this.get({
url: 'guang/api/v2/praise/cancel',
data: param,
api: global.yoho.ServiceAPI
});
} else {
return this.get({
url: 'guang/api/v2/praise/setPraise',
data: param,
api: global.yoho.ServiceAPI
});
}
}
/**
* [逛资讯收藏/取消收藏 (APP里调用)]
* @param {[int]} uid [用户id]
* @param {[int]} id [唯一资讯的ID]
* @param {[string]} opt [操作(ok:表示确定,cancel:表示取消)]
* @return {[array]}
*/
collectArticle(uid, id, opt) {
let param = {
article_id: id,
uid: uid
};
if (opt === 'cancel') {
return this.get({
url: 'guang/api/v1/favorite/cancelFavorite',
data: param,
api: global.yoho.ServiceAPI
});
} else {
return this.get({
url: 'guang/api/v1/favorite/setFavorite',
data: param,
api: global.yoho.ServiceAPI
});
}
}
// 品牌收藏
favoriteBrand(uid, id, opt) {
let param;
if (opt === 'ok') {
param = {
id: id,
uid: uid,
type: 'brand'
};
} else {
param = {
fav_id: id,
uid: uid,
type: 'brand'
};
}
if (opt === 'ok') {
return this.get({
url: 'app.favorite.add',
data: param,
api: global.yoho.API
});
} else {
return this.get({
url: 'app.favorite.cancel',
data: param,
api: global.yoho.API
});
}
}
};