Authored by 陈峰

修改编译bug

... ... @@ -973,26 +973,6 @@ let _getFavorite = (productId, uid) => {
});
};
/**
* 获取默认咨询列表
*/
const _getCommonConsult = () => {
let params = {
method: 'app.consult.common'
};
return api.get('', params, {
code: 200
}).then(result => {
let data = {};
if (result.data) {
data = result.data;
}
return data;
});
};
// let getProductData = (data) => {
// let finalResult;
... ... @@ -1873,17 +1853,6 @@ let _detailDataPkgAsync = (origin, uid, vipLevel, ua) => {
});
};
let _getPromotionInfo = (skn) => {
return api.get('', {
method: 'app.product.promotion',
product_skn: _.toString(skn)
}, {
code: 200,
cache: true
}).then((result) => {
return result && result.data;
});
};
/**
* 获取默认咨询列表
... ...