...
|
...
|
@@ -350,7 +350,7 @@ const _getSkuDataByProductBaseInfo = (data) => { |
|
|
goodsId: size.size_id,
|
|
|
notify: size.notify,
|
|
|
soldOut: _.parseInt(size.storage_number) === 0,
|
|
|
info: _.get(size, 'size_info', '').replace(/:/ig, '/')
|
|
|
info: _.get(size, 'size_info', '').replace(/:/ig, '/').replace(/ /ig, ' ')
|
|
|
});
|
|
|
|
|
|
// 单个sku商品的总数
|
...
|
...
|
@@ -765,8 +765,8 @@ const _getProductModelCard = (sortId, sizeInfo) => { |
|
|
|
|
|
const TYPE_SORT = {
|
|
|
1: ['height', 'weight', 'shoulderWidth', 'bust', 'waist', 'dressSize'], // 上衣
|
|
|
3: ['height', 'weight', 'shoulderWidth', 'waist', 'hip', 'downDressSize'], // 裤子
|
|
|
4: ['height', 'weight', 'shoulderWidth', 'waist', 'hip', 'downDressSize'] // 裙子
|
|
|
3: ['height', 'weight', 'waist', 'hip', 'downDressSize'], // 裤子
|
|
|
4: ['height', 'weight', 'waist', 'hip', 'downDressSize'] // 裙子
|
|
|
};
|
|
|
|
|
|
const local_ = {
|
...
|
...
|
|