shop-api.js
1.64 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
/**
* Created by TaoHuang on 2016/6/28.
*/
'use strict';
const config = global.yoho.config;
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 获取店铺装修的所有资源接口
*/
shopsDecoratorListAsync(shopId) {
return this.get({
data: {
method: 'app.shopsdecorator.getList',
shop_id: shopId
}, param: config.apiCache
});
}
/**
* 获取店铺优惠券接口
*/
shopCouponListAsync(shopId, uid) {
let extra = {
code: 200
};
if (!uid) {
extra.cache = true;
}
return this.get({
data: {
method: 'shop.coupons.list',
shop_id: shopId,
uid: uid
}, param: extra
});
}
shopBannerAsync(shopId) {
return this.get({
data: {
method: 'app.shop.banner',
shop_id: shopId
}
});
}
queryShopsByBrandId(sid, bid) {
return this.get({
data: {
method: 'app.product.queryShopsInfoById',
brand_id: bid,
shop_id: sid
}
});
}
/**
* 根据shopId获取店铺基本信息
* @return
*/
getShopInfo(shopId, uid) {
let finalParams = {
method: 'app.shops.getIntro',
shop_id: shopId || 0,
uid: uid || 0
};
return this.get({
data: finalParams,
param: config.apiCache
});
}
};