...
|
...
|
@@ -73,6 +73,7 @@ exports.getSaleGoodsData = (params) => { |
|
|
|
|
|
// 处理 VIP 商品数据
|
|
|
if (result[1].code === 200) {
|
|
|
// TODO:
|
|
|
let userInfo = result[1].data.vip_info ? camelCase(result[1].data.vip_info) : {};
|
|
|
|
|
|
if (_.isEmpty(userInfo)) {
|
...
|
...
|
@@ -315,6 +316,7 @@ exports.getSaleOthersData = (params, channel) => { |
|
|
|
|
|
if (!_.isEmpty(result[4])) {
|
|
|
// 处理 VIP 商品数据
|
|
|
// TODO:
|
|
|
if (result[4].code === 200 && parseInt(params.saleType, 10) === 2) {
|
|
|
let userInfo = result[4].data.vip_info ? camelCase(result[4].data.vip_info) : {};
|
|
|
|
...
|
...
|
|