detail-consult-api.js
850 Bytes
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
/**
* Created by TaoHuang on 2016/6/13.
*/
'use strict';
const library = '../../../library';
const API = require(`${library}/api`).API;
const sign = require(`${library}/sign`);
const log = require(`${library}/logger`);
const api = new API();
/**
* 咨询内容列表
*/
module.exports.indexAsync = function (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 api.get('', sign.apiSign(param)).catch(log.error);
};
/**
* 添加咨询操作
*/
module.exports.createAsync = function (uid, pid, content) {
return api.post('', sign.apiSign({
method: 'h5.consult.add',
product_id: pid,
content: content,
uid: uid
})).catch(log.error);
};