detail-consult-api.js
1.06 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
/**
* Created by TaoHuang on 2016/6/13.
*/
'use strict';
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 咨询内容列表
*/
indexAsync(uid, pid, page, size) {
let param = {};
param.method = 'app.consult.li';
param.product_id = pid;
if (uid) {
param.uid = uid;
}
param.page = page;
param.limit = size;
return this.get({data: param});
}
/**
* 添加咨询操作
*/
createAsync(uid, pid, content) {
return this.post({data: {
method: 'h5.consult.add',
product_id: pid,
content: content,
uid: uid
}});
}
likeAsync(uid, id) {
return this.get({data: {
method: 'app.consult.like',
uid: uid,
id: id
}});
}
usefulAsync(uid, id) {
return this.get({data: {
method: 'app.consult.useful',
uid: uid,
id: id
}});
}
};