shop-api.js
964 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
45
46
47
48
49
50
51
/**
* Created by TaoHuang on 2016/6/28.
*/
'use strict';
const api = global.yoho.API;
const config = global.yoho.config;
/**
* 获取店铺装修的所有资源接口
*/
exports.shopsDecoratorListAsync = shopId => {
return api.get('', {
method: 'app.shopsdecorator.getList',
shop_id: shopId
}, config.apiCache);
};
/**
* 获取店铺优惠券接口
*/
exports.shopCouponListAsync = (shopId, uid) => {
let extra = {
code: 200
};
if (!uid) {
extra.cache = true;
}
return api.get('', {
method: 'shop.coupons.list',
shop_id: shopId,
uid: uid
}, extra);
};
exports.shopBannerAsync = (shopId) => {
return api.get('', {
method: 'app.shop.banner',
shop_id: shopId
});
};
exports.queryShopsByBrandId = (sid, bid) => {
return api.get('', {
method: 'app.product.queryShopsInfoById',
brand_id: bid,
shop_id: sid
});
};