detail-hotarea-api.js
297 Bytes
/**
* Created by TaoHuang on 2016/6/13.
*/
'use strict';
const api = global.yoho.API;
/**
* 获取商品的热区
*/
const indexAsync = pid => {
return api.get('', {
method: 'web.productCollocation.list',
product_id: pid
});
};
module.exports = {
indexAsync
};