Browse Source

会员等级时长转为分钟传到后台

john 2 years ago
parent
commit
281fb76e10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pages/parkingFee/mixins/parkingFeeDetail.js

+ 1 - 1
src/pages/parkingFee/mixins/parkingFeeDetail.js

@@ -172,7 +172,7 @@ export default {
             discountFee = memberGrade[0].hasOwnProperty('discountFee') ? memberGrade[0].discountFee : discountTime * hourPrice;
           }
           params.discountInfo.memberLevel = {
-            "discountTime": discountTime,
+            "discountTime": discountTime * 60, // 小时转成分钟
             "discountFee": discountFee,
             "memberGrade": memberGrade[0].memberGrade
           }