|
@@ -106,8 +106,8 @@ export default {
|
|
|
this.parkDiscountTotal.feeCopy -= this.discountTotal.fee;
|
|
|
}
|
|
|
|
|
|
- this.parkFee = JSON.parse(uni.getStorageSync('parkFee'));
|
|
|
- console.log(616161, this.parkFee);
|
|
|
+ const parkFee = uni.getStorageSync('parkFee')
|
|
|
+ this.parkFee = parkFee ? JSON.parse(uni.getStorageSync('parkFee')) : {};
|
|
|
this.parkInfoEntity = this.parkFee.parkInfoEntity;
|
|
|
this.parkInfoEntity.useReduceTime = this.parkInfoEntity.useReduceTime
|
|
|
? this.parkInfoEntity.useReduceTime
|