Showing
1 changed file
with
1 additions
and
1 deletions
@@ -611,7 +611,7 @@ const _detailDataPkg = (origin, uid, vipLevel) => { | @@ -611,7 +611,7 @@ const _detailDataPkg = (origin, uid, vipLevel) => { | ||
611 | 611 | ||
612 | if (origin.productPriceBo.studentPrice) { | 612 | if (origin.productPriceBo.studentPrice) { |
613 | // 学生价 | 613 | // 学生价 |
614 | - result.studentsPrice = '¥' + origin.productPriceBo.studentPrice; | 614 | + result.studentsPrice = '¥' + origin.productPriceBo.studentPrice.toFixed(2); |
615 | } else { | 615 | } else { |
616 | // VIP学生数据 | 616 | // VIP学生数据 |
617 | result.vipPrice = _getVipDataByProductBaseInfo(origin, vipLevel, uid); | 617 | result.vipPrice = _getVipDataByProductBaseInfo(origin, vipLevel, uid); |
-
Please register or login to post a comment