Authored by 郝肖肖

更改测试展览票

... ... @@ -30,7 +30,7 @@ const BLANK_STR = ' ';
const cachedRequestData = {};
//展览票
// 展览票
const EXHIBITION_TICKET = 512579596;
const _getProductAdditionInfoAsync = (data) => {
... ... @@ -364,7 +364,7 @@ const _getSkuDataByProductBaseInfo = (data) => {
// 商品的尺码列表
cur.goodsSizeBoList.forEach(size => {
if (data.attribute === 3) {
//虚拟商品,门票默认最大为4,
// 虚拟商品,门票默认最大为4,
size.goodsSizeStorageNum = size.goodsSizeStorageNum > 4 ? 4 : size.goodsSizeStorageNum;
}
... ... @@ -703,7 +703,8 @@ const _detailDataPkg = (origin, uid, vipLevel) => {
result.advancePrice = result.salePrice; // 先行价格
delete result.salePrice;
}
//是否展览票
// 是否展览票
result.isTicket = origin.erpProductId * 1 === EXHIBITION_TICKET;
}
... ...