...
|
...
|
@@ -611,7 +611,7 @@ const _detailDataPkg = (origin, uid, vipLevel) => { |
|
|
|
|
|
if (origin.productPriceBo.studentPrice) {
|
|
|
// 学生价
|
|
|
result.studentsPrice = '¥' + origin.productPriceBo.studentPrice;
|
|
|
result.studentsPrice = '¥' + origin.productPriceBo.studentPrice.toFixed(2);
|
|
|
} else {
|
|
|
// VIP学生数据
|
|
|
result.vipPrice = _getVipDataByProductBaseInfo(origin, vipLevel, uid);
|
...
|
...
|
|