yohood.js
1.61 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
/**
* Created by qiujun on 2018/7/19.
*/
const service = global.yoho.StoreAPI;
class YohoodModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 获取有货资源位列表
* @param contentCode
*/
getYohoBuyResource(contentCode) {
return this.get({
url: 'operations/api/v5/resource/home',
data: {
content_code: contentCode
},
api: global.yoho.ServiceAPI
});
}
/**
* 通过店铺Id获取店铺推荐商品
* @param shopId
*/
getShopProductsByShopId(shopId) {
return this.get({
url: '',
data: {
method: 'app.search.shop.productList',
shop_id: shopId,
limit: 10,
page: 1
}
});
}
/**
* 获取线下店优惠券
* @param uid
* @param couponId
*/
async getOfflineStoreCoupon(uid, couponId) {
return await service.get('coupon/sendCoupon.do', {
uid: uid,
couponId: couponId
});
}
/**
* 获取用户下的券信息
* @param uid
* @param couponId
*/
async getCouponDetail(uid, couponId) {
return await service.get('coupon/getCouponDetail.do', {
uid: uid,
couponId: couponId
});
}
/**
* 获取券信息
* @param couponId
*/
async getCouponInfo(couponId) {
return await service.get('coupon/getCoupon.do', {
couponId: couponId
});
}
}
module.exports = YohoodModel;