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