|
@@ -64,7 +64,8 @@ export default {
|
|
|
// 2.22新增内容:https://kerryprops.atlassian.net/browse/KIP-13059
|
|
|
portalsByLbsList: [],
|
|
|
portalsByLbsInfo: {},
|
|
|
- enableDiscountVehicle: ''
|
|
|
+ enableDiscountVehicle: '',
|
|
|
+ isAlipayFlag: isAlipay()
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -1338,15 +1339,16 @@ export default {
|
|
|
case 'FIND_CAR': // 反向寻车
|
|
|
if (this.mallId === '8a888bfd816101980181a969f513019c') {
|
|
|
console.log('isAlipay:::', isAlipay())
|
|
|
- if (isAlipay()) {
|
|
|
- this.$dialog({
|
|
|
- title: '温馨提示',
|
|
|
- message: '支付宝当前无反向寻车,请前往微信,谢谢!',
|
|
|
- confirmButtonColor: this.$theme[this.theme].primaryColor
|
|
|
- })
|
|
|
- } else {
|
|
|
- this.findcarFZ()
|
|
|
- }
|
|
|
+ this.findcarFZ()
|
|
|
+ // if (isAlipay()) {
|
|
|
+ // this.$dialog({
|
|
|
+ // title: '温馨提示',
|
|
|
+ // message: '支付宝当前无反向寻车,请前往微信,谢谢!',
|
|
|
+ // confirmButtonColor: this.$theme[this.theme].primaryColor
|
|
|
+ // })
|
|
|
+ // } else {
|
|
|
+ // this.findcarFZ()
|
|
|
+ // }
|
|
|
} else {
|
|
|
console.log('反向寻车', this.portalsByLbsInfo)
|
|
|
this.$router.push({path: 'parkingFindCarFirst', query: this.portalsByLbsInfo});
|