|
@@ -4,12 +4,10 @@ import log from '@/utils/log.js';
|
|
|
import { compare } from '@/utils/location.js';
|
|
|
import uni from '@/utils/uniHooks';
|
|
|
import { initWxJsSdkConfig } from '@/utils/login';
|
|
|
-import {
|
|
|
- getAppIdByGroupIdAndMallId,
|
|
|
- getIsWxh5,
|
|
|
- getPlatform,
|
|
|
-} from '@/utils';
|
|
|
+import { getAppIdByGroupIdAndMallId, getIsWxh5, getPlatform } from '@/utils';
|
|
|
import { Dialog, Toast } from 'vant';
|
|
|
+import { checkOut } from '@/api/parking';
|
|
|
+import checkOutResponse from '@/api/mockData/check-out.response.json'
|
|
|
|
|
|
export default {
|
|
|
name: 'parkingFeeDetail',
|
|
@@ -237,1598 +235,23 @@ export default {
|
|
|
appId: (state) => state.appId,
|
|
|
}),
|
|
|
},
|
|
|
- async created() {
|
|
|
- setTimeout(() => {
|
|
|
- uni.setNavigationBarTitle({
|
|
|
- title: '停车支付',
|
|
|
- });
|
|
|
- // this.launchPathInit();
|
|
|
- }, 300);
|
|
|
- // console.log('469 我终于知道为什么了', uni.getStorageSync('isReload'));
|
|
|
- // if (uni.getStorageSync('isReload') === '4') {
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // uni.setStorageSync('isReload', '2');
|
|
|
- const option = this.$route.query;
|
|
|
- this.picUrl = this.$picUrl;
|
|
|
- this.payCarno = option.carno;
|
|
|
- this.orderno = option.orderno;
|
|
|
- this.id = option.id;
|
|
|
- this.init();
|
|
|
- // debugger;
|
|
|
- this.createParkOrder();
|
|
|
- console.log('created', this.parkInfo);
|
|
|
- // if (uni.getStorageSync('isReload') === '3') {
|
|
|
- // console.log(487);
|
|
|
- // this.$router.push({
|
|
|
- // path: '/jump',
|
|
|
- // query: this.$route.query,
|
|
|
- // });
|
|
|
- // return;
|
|
|
- // }
|
|
|
- },
|
|
|
- async activated() {
|
|
|
- console.log('activated', uni.getStorageSync('isReload'));
|
|
|
- const platform = getPlatform();
|
|
|
- if (platform === 'micromessenger') {
|
|
|
- await initWxJsSdkConfig(['chooseWXPay', 'scanQRCode']);
|
|
|
- try {
|
|
|
- // if (window.wxJsSdkConfigInitPromise) {
|
|
|
- // // console.log(window.wxJsSdkConfigInitPromise);
|
|
|
- // // window.wxJsSdkConfigInitPromise;
|
|
|
- // }
|
|
|
- } catch (e) {
|
|
|
- console.log(487, e);
|
|
|
- }
|
|
|
- }
|
|
|
- // if (uni.getStorageSync('isReload') === '3') {
|
|
|
- // console.log(487);
|
|
|
- // this.$router.push({
|
|
|
- // path: '/jump',
|
|
|
- // query: this.$route.query,
|
|
|
- // });
|
|
|
- // return;
|
|
|
- // }
|
|
|
- setTimeout(() => {
|
|
|
- uni.setNavigationBarTitle({
|
|
|
- title: '停车支付',
|
|
|
- });
|
|
|
- }, 300);
|
|
|
- // console.log('订单时间:' + this.orderCreateTime);
|
|
|
- log.info('订单时间:' + this.orderCreateTime);
|
|
|
- this.isPageHide = false;
|
|
|
- // 如果订单时间+3分钟-当前时间<=0 刷新订单
|
|
|
- if (this.orderCreateTime) {
|
|
|
- const countDownTime = moment(this.orderCreateTime)
|
|
|
- .add(180, 's')
|
|
|
- .diff(moment(), 's');
|
|
|
- log.info('剩余时间:' + countDownTime);
|
|
|
- if (countDownTime <= 0) {
|
|
|
- this.createParkOrder();
|
|
|
- } else {
|
|
|
- this.refreshTime = countDownTime;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 优惠减免(首停、会员、消费)
|
|
|
- const checkedTotal = uni.getStorageSync('checkedTotal');
|
|
|
- this.checkedTotal = checkedTotal === 'null' || !checkedTotal ? 0 : checkedTotal;
|
|
|
- const discountTotal = uni.getStorageSync('discountTotal');
|
|
|
- this.discountTotal = discountTotal ? discountTotal : {};
|
|
|
-
|
|
|
- // 电子券减免(停车券)
|
|
|
- const couponInfo = uni.getStorageSync('couponInfo');
|
|
|
- this.couponInfo = couponInfo
|
|
|
- ? typeof couponInfo === 'string'
|
|
|
- ? JSON.parse(couponInfo)
|
|
|
- : couponInfo
|
|
|
- : {};
|
|
|
- const checkedCouponList = uni.getStorageSync('checkedCouponList');
|
|
|
- this.checkedCouponCount = checkedCouponList?.length
|
|
|
- ? JSON.parse(uni.getStorageSync('checkedCouponList')).length
|
|
|
- : 0;
|
|
|
- // console.log('电子券减免, 报错地址', checkedCouponList);
|
|
|
-
|
|
|
- // 纸质优惠券
|
|
|
- // console.log(547, uni.getStorageSync('paperCouponInfo'));
|
|
|
- this.paperCouponInfo = uni.getStorageSync('paperCouponInfo') || {};
|
|
|
+ created() {
|
|
|
+ this.pageInit();
|
|
|
},
|
|
|
methods: {
|
|
|
- // 页面初始清空缓存
|
|
|
- init() {
|
|
|
- console.log('清理数据, 到底在执行几次?');
|
|
|
- // 优惠减免(首停、会员、消费)
|
|
|
- uni.removeStorageSync('checkedList'); // 选中list
|
|
|
- uni.removeStorageSync('checkedTotal'); // 选中count数
|
|
|
- uni.removeStorageSync('discountTotal'); // 减免信息(时长、费用)
|
|
|
-
|
|
|
- // 停车减免(优惠、积分、停车券)
|
|
|
- uni.removeStorageSync('parkFee');
|
|
|
-
|
|
|
- // 电子券优惠信息
|
|
|
- uni.removeStorageSync('checkedCouponList'); // 选中list
|
|
|
- uni.removeStorageSync('couponInfo'); // 减免信息(时长、费用)
|
|
|
- uni.removeStorageSync('list'); // 电子券list
|
|
|
-
|
|
|
- // 总停车优惠信息(时长、费用)
|
|
|
- uni.removeStorageSync('parkingTotal');
|
|
|
-
|
|
|
- // 应缴金额
|
|
|
- uni.removeStorageSync('servicefee');
|
|
|
-
|
|
|
- // 订单号
|
|
|
- uni.removeStorageSync('orderno');
|
|
|
-
|
|
|
- // 纸质优惠券
|
|
|
- uni.removeStorageSync('paperCouponInfo');
|
|
|
- },
|
|
|
-
|
|
|
- // 重置倒计时
|
|
|
- resetCountDown() {
|
|
|
- this.refreshTime = 0;
|
|
|
- this.createParkOrder();
|
|
|
- },
|
|
|
-
|
|
|
- // 创建订单
|
|
|
- async createParkOrder() {
|
|
|
+ toPay() {},
|
|
|
+ durationMinus() {},
|
|
|
+ durationAdd() {},
|
|
|
+ // 初始化
|
|
|
+ async pageInit() {
|
|
|
+ console.log(247, checkOutResponse);
|
|
|
try {
|
|
|
- uni.showLoading({
|
|
|
- title: '加载中',
|
|
|
- });
|
|
|
- const params = {
|
|
|
- carno: this.payCarno,
|
|
|
- mallid: this.mallid,
|
|
|
- openId: this.openId,
|
|
|
- vipcode:
|
|
|
- this.member?.vipcode || uni.getStorageSync('member')?.vipcode,
|
|
|
- mobile: uni.getStorageSync('userInfo')?.phoneNumber,
|
|
|
- groupId: this.groupId,
|
|
|
- createuser: 'sys_miniprogram',
|
|
|
- // projectId: 'SKC',
|
|
|
- // appId: uni.getStorageSync('appid'),
|
|
|
- };
|
|
|
- if (getIsWxh5()) {
|
|
|
- // 如果是微信公众号环境
|
|
|
- const { projectId, appid } = getAppIdByGroupIdAndMallId({
|
|
|
- groupId: uni.getStorageSync('groupId'),
|
|
|
- mallId: uni.getStorageSync('mallId'),
|
|
|
- type: 'all',
|
|
|
- });
|
|
|
- params.projectId = projectId;
|
|
|
- params.appId = appid;
|
|
|
- params.kipUserId = uni.getStorageSync('userInfo')?.id;
|
|
|
- }
|
|
|
-
|
|
|
- this.$md(params);
|
|
|
- const res = await this.$request({
|
|
|
- url: this.$baseURL + 'api/1.0/park/createParkOrderAndCarFee',
|
|
|
- data: params,
|
|
|
- method: 'POST',
|
|
|
- header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
- });
|
|
|
- uni.hideLoading();
|
|
|
- // console.log(629, res.data);
|
|
|
- // debugger;
|
|
|
- if (res.data.code === 0) {
|
|
|
- this.bindflag = res.data.data.bind;
|
|
|
- this.parkInfo = res.data.data;
|
|
|
- this.parkMallCode = this.parkInfo.parkMallCode;
|
|
|
- this.orderCreateTime = this.parkInfo.createDate;
|
|
|
- uni.setStorageSync('servicefee', this.parkInfo.servicefee / 100);
|
|
|
- uni.setStorageSync('orderno', this.parkInfo.orderno);
|
|
|
- if (!this.parkInfo.servicefee && this.initFlag) {
|
|
|
- this.initFlag = false;
|
|
|
- Dialog.alert({
|
|
|
- title: '提示',
|
|
|
- message: '当前无需缴费',
|
|
|
- confirmButtonColor: '#333',
|
|
|
- }).then(() => {
|
|
|
- // on confirm
|
|
|
- this.$router.back();
|
|
|
- });
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.member && JSON.stringify(this.member) !== '{}') {
|
|
|
- this.getDiscount();
|
|
|
- } else {
|
|
|
- // 未登录状态显示纸质券
|
|
|
- this.isShowPapercoupons = true;
|
|
|
- }
|
|
|
- this.refreshTime = 180;
|
|
|
- } else {
|
|
|
- uni.showModal({
|
|
|
- showCancel: false,
|
|
|
- title: '提示',
|
|
|
- content: res.data.msg,
|
|
|
- complete(r) {
|
|
|
- this.$router.back();
|
|
|
- },
|
|
|
- });
|
|
|
- }
|
|
|
- } catch (err) {
|
|
|
- console.log(err);
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // 获取优惠、停车场相关配置
|
|
|
- getDiscount() {
|
|
|
- uni.showLoading({
|
|
|
- title: '加载中',
|
|
|
- });
|
|
|
- // console.log(662, this.member);
|
|
|
- const params = {
|
|
|
- carno: this.payCarno,
|
|
|
- mallid: this.mallid,
|
|
|
- vipcode: this.member?.vipcode,
|
|
|
- groupId: this.groupId,
|
|
|
- };
|
|
|
- this.$md(params);
|
|
|
- this.$request({
|
|
|
- url: this.$baseURL + 'api/1.0/park/discount',
|
|
|
- data: params,
|
|
|
- method: 'POST',
|
|
|
- header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
- uni.hideLoading();
|
|
|
- if (res.data.code === 0) {
|
|
|
- this.parkFee = res.data.data;
|
|
|
- this.$nextTick(() => {
|
|
|
- if (this.parkFee.parkIntegraltomoneyList) {
|
|
|
- this.integral =
|
|
|
- this.parkFee.parkIntegraltomoneyList[0].integral;
|
|
|
- this.integralToValue =
|
|
|
- this.parkFee.parkIntegraltomoneyList[0].value || 0;
|
|
|
- this.integralMaxMoney =
|
|
|
- this.parkFee.parkIntegraltomoneyList[0].integralMaxHour || 0;
|
|
|
- this.bonus = this.parkFee.parkIntegraltomoneyList[0].bonus;
|
|
|
- this.discountKind = this.parkFee.discountKind;
|
|
|
- if (this.parkFee.discountKind === 7) {
|
|
|
- // console.log('this.parkFee.parkIntegraltomoneyList[1]::::::', res.data.data.parkIntegraltomoneyList)
|
|
|
- this.integralNew =
|
|
|
- _this.parkFee.parkIntegraltomoneyList[1].integral;
|
|
|
- this.integralNewToValue =
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].value || 0;
|
|
|
- this.integralNewMaxMoney =
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].integralMaxHour || 0;
|
|
|
- }
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- if (this.duration) {
|
|
|
- this.bonus -=
|
|
|
- (this.duration * this.integral) / this.integralToValue;
|
|
|
- this.bonusfee = this.duration;
|
|
|
- this.durationCopy = this.duration;
|
|
|
- }
|
|
|
- } else {
|
|
|
- if (this.duration) {
|
|
|
- this.bonus -= this.duration * this.integral;
|
|
|
- this.bonusfee = this.duration * this.hourMoney;
|
|
|
- this.durationCopy = this.duration;
|
|
|
- }
|
|
|
- }
|
|
|
- // this.bonusCopy = this.bonus;
|
|
|
- this.$store.commit('SET_BONUS_COPY', this.bonus);
|
|
|
- }
|
|
|
- if (!this.parkFee.parkInfoEntity) {
|
|
|
- return;
|
|
|
- }
|
|
|
- const reg = /[;;]/g;
|
|
|
- this.parkFee.parkInfoEntity.payinstruction =
|
|
|
- this.parkFee.parkInfoEntity.payinstruction.replace(reg, '\r\n');
|
|
|
- this.hourMoney = this.parkFee.parkInfoEntity.needmoney;
|
|
|
- this.parkMallCode = this.parkFee.parkInfoEntity.parkMallCode;
|
|
|
- if (this.parkFee.memberTicketList) {
|
|
|
- this.couponCount = this.parkFee.memberTicketList.length;
|
|
|
- }
|
|
|
- // 上限金额
|
|
|
- this.maxonetimediscountFee =
|
|
|
- this.parkFee.parkInfoEntity.maxonetimediscount * this.hourMoney;
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.maxonedaydiscountFee =
|
|
|
- this.parkFee.parkInfoEntity.maxOneDayHour -
|
|
|
- this.parkFee.parkInfoEntity
|
|
|
- .ticketandMemeberGradeAndConsumeUseHour || 0;
|
|
|
- } else {
|
|
|
- this.maxonedaydiscountFee =
|
|
|
- (this.parkFee.parkInfoEntity.maxOneDayHour -
|
|
|
- this.parkFee.parkInfoEntity
|
|
|
- .ticketandMemeberGradeAndConsumeUseHour) *
|
|
|
- this.hourMoney || 0;
|
|
|
- }
|
|
|
- if (this.maxonedaydiscountFee < 0) {
|
|
|
- this.maxonedaydiscountFee = 0;
|
|
|
- }
|
|
|
- uni.setStorageSync('parkFee', JSON.stringify(this.parkFee));
|
|
|
- // 如果有可使用会员减免、消费减免,追加弹框提示
|
|
|
- if (
|
|
|
- this.parkFee.parkInfoEntity.consumeReduce ||
|
|
|
- this.parkFee.parkInfoEntity.memberLevelReduce
|
|
|
- ) {
|
|
|
- if (
|
|
|
- (this.parkFee.parkMemberOrderReducesEntityList &&
|
|
|
- this.parkFee.parkMemberOrderReducesEntityList[0]) ||
|
|
|
- (this.parkFee.parkConsumeReducesEntityList &&
|
|
|
- this.parkFee.parkConsumeReducesEntityList[0])
|
|
|
- ) {
|
|
|
- this.hasDiscount = true;
|
|
|
- // if (!this.parkInfo.servicefee) {
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // let confirmColor = '#703a98';
|
|
|
- // if (this.custTypeId === 1) {
|
|
|
- // confirmColor = '#023694';
|
|
|
- // }
|
|
|
- // if (this.custTypeId === 2) {
|
|
|
- // confirmColor = '#0B683A';
|
|
|
- // }
|
|
|
- // if (this.checkedTotal || this.isPageHide || this.isShowPopup) {
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // this.isShowPopup = true;
|
|
|
- // uni.showModal({
|
|
|
- // title: '停车优惠',
|
|
|
- // content: '您有停车优惠可使用, 前往使用!',
|
|
|
- // cancelText: '返回',
|
|
|
- // confirmText: '点击查看',
|
|
|
- // confirmColor: confirmColor,
|
|
|
- // success: res => {
|
|
|
- // if (res.confirm) {
|
|
|
- // this.discounts();
|
|
|
- // }
|
|
|
- // this.isShowPopup = false;
|
|
|
- // }
|
|
|
- // })
|
|
|
- }
|
|
|
- }
|
|
|
- // 自动勾选优惠
|
|
|
- if (
|
|
|
- !this.discountTotalFee &&
|
|
|
- (this.hasDiscount ||
|
|
|
- this.bonusCopy >= this.integral ||
|
|
|
- this.bonusCopy >= this.integralNew ||
|
|
|
- this.couponCount)
|
|
|
- ) {
|
|
|
- this.autoCheckDiscounts();
|
|
|
- }
|
|
|
- });
|
|
|
- } else {
|
|
|
- uni.showModal({
|
|
|
- showCancel: false,
|
|
|
- title: '提示',
|
|
|
- content: res.data.msg,
|
|
|
- complete(r) {
|
|
|
- // this.$router.back();
|
|
|
- },
|
|
|
- });
|
|
|
- }
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.log(err);
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 积分取消:flag: 1(普通积分) 2(新会员积分)
|
|
|
- cancel(flag) {
|
|
|
- if (flag === 1) {
|
|
|
- this.duration = this.durationCopy;
|
|
|
- this.bonus = this.bonusCopy;
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.bonusfee = this.duration;
|
|
|
- } else {
|
|
|
- this.bonusfee = this.duration * this.hourMoney;
|
|
|
- }
|
|
|
- this.popup = false;
|
|
|
- }
|
|
|
- if (flag === 2) {
|
|
|
- // 北京新会员积分减免操作后取消
|
|
|
- this.durationNew = this.durationCopy2;
|
|
|
- this.bonus = this.bonusCopy;
|
|
|
- this.newBonusfee = this.durationNew * this.hourMoney;
|
|
|
- this.newpopup = false;
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // 积分确认 flag: 1(普通积分) 2(新会员积分)
|
|
|
- confirm(flag) {
|
|
|
- if (flag === 1) {
|
|
|
- this.$store.commit('SET_BONUS_COPY', this.bonus);
|
|
|
- this.durationCopy = this.duration;
|
|
|
- // this.$refs.popup.close();
|
|
|
- this.popup = false;
|
|
|
- }
|
|
|
- if ( flag === 2 ) {
|
|
|
- // this.bonusCopy = this.bonus;
|
|
|
- this.$store.commit('SET_BONUS_COPY', this.bonus);
|
|
|
- this.durationCopy2 = this.durationNew;
|
|
|
- this.newpopup = false;
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // 减积分
|
|
|
- durationMinus() {
|
|
|
- if (this.duration > 0) {
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.duration -= this.integralToValue;
|
|
|
- } else {
|
|
|
- this.duration--;
|
|
|
- }
|
|
|
- this.bonus += this.integral;
|
|
|
- }
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.bonusfee = this.duration;
|
|
|
- } else {
|
|
|
- this.bonusfee = this.duration * this.hourMoney;
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // 加积分
|
|
|
- durationAdd() {
|
|
|
- // 浦东每次缴费超限控制
|
|
|
- if (
|
|
|
- this.parkMallCode === 1 &&
|
|
|
- this.discountTotalFee >= this.maxonetimediscountFee
|
|
|
- ) {
|
|
|
- return uni.showToast({
|
|
|
- title: `超出抵扣上限,每次最高可抵扣${this.parkFee.parkInfoEntity.maxonetimediscount}小时`,
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- // 北京积分上限控制
|
|
|
- if (this.parkMallCode === 3) {
|
|
|
- const bonusMax =
|
|
|
- this.parkFee.parkInfoEntity.integralMaxHour -
|
|
|
- this.parkFee.parkInfoEntity.integralUseHour || 0;
|
|
|
- if (this.duration >= bonusMax) {
|
|
|
- return uni.showToast({
|
|
|
- title: `超出抵扣上限,每日最高可抵扣${this.parkFee.parkInfoEntity.integralMaxHour}小时`,
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- // 深圳积分上限控制
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- if (this.discountTotalFee >= this.maxonedaydiscountFee) {
|
|
|
- return uni.showToast({
|
|
|
- title: `超出抵扣上限,每日最高可抵扣${this.parkFee.parkInfoEntity.maxOneDayHour}元`,
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- if (this.duration >= this.integralMaxMoney) {
|
|
|
- return uni.showToast({
|
|
|
- title: `超出抵扣上限,每次最高可抵扣${this.integralMaxMoney}元`,
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (this.bonus - this.integral >= 0) {
|
|
|
- this.bonus -= this.integral;
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.duration += this.integralToValue;
|
|
|
- } else {
|
|
|
- this.duration++;
|
|
|
- }
|
|
|
- } else {
|
|
|
- uni.showToast({
|
|
|
- title: '积分不足',
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.bonusfee = this.duration;
|
|
|
- } else {
|
|
|
- this.bonusfee = this.duration * this.hourMoney;
|
|
|
- }
|
|
|
- },
|
|
|
- // 北京新会员加积分
|
|
|
- durationAddNew() {
|
|
|
- const bonusMaxNew =
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].integralMaxHour -
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].integralUseHour || 0;
|
|
|
- if (this.durationNew >= bonusMaxNew) {
|
|
|
- return uni.showToast({
|
|
|
- title: `超出抵扣上限,每日最高可抵扣${this.parkFee.parkIntegraltomoneyList[1].integralMaxHour}小时`,
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- if (this.bonus - this.integralNew >= 0) {
|
|
|
- this.bonus -= this.integralNew;
|
|
|
- this.durationNew++;
|
|
|
- this.newBonusfee = this.durationNew * this.hourMoney;
|
|
|
- } else {
|
|
|
- uni.showToast({
|
|
|
- title: '积分不足',
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- }
|
|
|
- },
|
|
|
- // 北京新会员减积分
|
|
|
- durationMinusNew() {
|
|
|
- if (this.durationNew > 0) {
|
|
|
- this.bonus += this.integralNew;
|
|
|
- this.durationNew--;
|
|
|
- this.newBonusfee = this.durationNew * this.hourMoney;
|
|
|
- }
|
|
|
- },
|
|
|
- // 积分减免弹出
|
|
|
- toggle(type) {
|
|
|
- if (
|
|
|
- this.parkFee.parkIntegraltomoneyList &&
|
|
|
- this.parkFee.parkIntegraltomoneyList.length
|
|
|
- ) {
|
|
|
- this.popup = true;
|
|
|
- }
|
|
|
- },
|
|
|
- // 积分减免弹出
|
|
|
- newToggle(type) {
|
|
|
- if (
|
|
|
- this.parkFee.parkIntegraltomoneyList &&
|
|
|
- this.parkFee.parkIntegraltomoneyList.length
|
|
|
- ) {
|
|
|
- this.newpopup = true;
|
|
|
- }
|
|
|
- },
|
|
|
- // 跳转纸质优惠
|
|
|
- paperCoupon() {
|
|
|
- this.$router.push({
|
|
|
- path: 'parkingFeePaperCoupon',
|
|
|
- query: {
|
|
|
- parkInfo: this.parkInfo,
|
|
|
- },
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 电子优惠劵
|
|
|
- coupon() {
|
|
|
- // if (!this.couponCount) {
|
|
|
- // return uni.showToast({
|
|
|
- // title: '暂无可使用的优惠券,请前往积分商城兑换优惠券',
|
|
|
- // icon: 'none',
|
|
|
- // });
|
|
|
- // }
|
|
|
- this.$router.push({
|
|
|
- path: 'parkingFeeCoupon',
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 跳转首停、会员、消费减免页面
|
|
|
- discounts() {
|
|
|
- if (!this.hasDiscount && this.parkMallCode !== 2) {
|
|
|
- return Toast({
|
|
|
- message: '暂无可用优惠',
|
|
|
- });
|
|
|
- }
|
|
|
- this.$router.push({
|
|
|
- path: 'parkingFeeDiscounts',
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 自动勾选优惠 优先级:会员/消费->电子券->积分
|
|
|
- autoCheckDiscounts() {
|
|
|
- console.log('首次进来', this.parkFee);
|
|
|
- // console.log('首次进来', this.parkInfo);
|
|
|
- if (!this.parkFee || !this.parkInfo.servicefee) {
|
|
|
- return;
|
|
|
- }
|
|
|
- const serviceFee = this.parkInfo.servicefee / 100; // 应缴费用
|
|
|
-
|
|
|
- // 自动选取消费减免
|
|
|
- if (
|
|
|
- this.parkFee.parkConsumeReducesEntityList &&
|
|
|
- this.parkFee.parkConsumeReducesEntityList[0] &&
|
|
|
- this.parkFee.parkConsumeReducesEntityList[0].recuceContent
|
|
|
- ) {
|
|
|
- this.autoConsume(serviceFee);
|
|
|
- }
|
|
|
-
|
|
|
- // 自动选取会员等级减免
|
|
|
- if (
|
|
|
- this.parkFee.parkMemberOrderReducesEntityList &&
|
|
|
- this.parkFee.parkMemberOrderReducesEntityList[0] &&
|
|
|
- this.parkFee.parkMemberOrderReducesEntityList[0].reduceContent &&
|
|
|
- Number.parseInt(
|
|
|
- this.parkFee.parkMemberOrderReducesEntityList[0].reduceContent
|
|
|
- ) > 0
|
|
|
- ) {
|
|
|
- this.autoMember();
|
|
|
- }
|
|
|
-
|
|
|
- // 自动选取电子券减免
|
|
|
- if (this.couponCount) {
|
|
|
- this.autoCoupon(serviceFee);
|
|
|
- }
|
|
|
-
|
|
|
- // 自动选取北京新会员积分减免
|
|
|
- if (this.discountKind === 7) {
|
|
|
- // console.log('this.bonusCopy::::::',this.bonusCopy, this.integral)
|
|
|
- if (this.bonusCopy >= this.integralNew) {
|
|
|
- this.newMemberautoBonus(serviceFee);
|
|
|
- }
|
|
|
- }
|
|
|
- // 自动选取积分减免
|
|
|
- if (this.bonusCopy > this.integral) {
|
|
|
- this.autoBonus(serviceFee);
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- // 自动选取消费减免
|
|
|
- autoConsume(serviceFee) {
|
|
|
- console.log('自动选取消费减免', serviceFee);
|
|
|
- let consumeTime =
|
|
|
- +this.parkFee.parkConsumeReducesEntityList[0].recuceContent || 0; // 消费减免时长
|
|
|
- let consumeFee = 0; // 消费减免费用
|
|
|
- const isSplit = this.parkFee.parkInfoEntity.isSplit === 0 ? 0 : 1; // 是否拆分 0: 可拆 1: 不可拆
|
|
|
- const serviceTime = Math.ceil(serviceFee / this.hourMoney); // 停车时长(防止有小数情况向上取整)
|
|
|
-
|
|
|
- /*************************************************** 静安 ***************************************************/
|
|
|
- if (this.parkMallCode === 0) {
|
|
|
- // 超过上限取上限
|
|
|
- if (consumeTime > this.parkFee.parkInfoEntity.remainReduceTime) {
|
|
|
- consumeTime = this.parkFee.parkInfoEntity.remainReduceTime;
|
|
|
- }
|
|
|
- // 拆分消费减免
|
|
|
- if (isSplit === 0) {
|
|
|
- // 减免时长超出停车时长取停车时长
|
|
|
- if (consumeTime > serviceTime) {
|
|
|
- consumeTime = serviceTime;
|
|
|
- }
|
|
|
- }
|
|
|
- // 消费减免费用
|
|
|
- consumeFee = consumeTime * this.hourMoney;
|
|
|
- }
|
|
|
-
|
|
|
- /*************************************************** 浦东 ***************************************************/
|
|
|
- if (this.parkMallCode === 1) {
|
|
|
- // 可用消费减免时长上限
|
|
|
- let remainReduceTime = this.parkFee.parkInfoEntity.remainReduceTime;
|
|
|
- if (remainReduceTime > this.parkFee.parkInfoEntity.maxonetimediscount) {
|
|
|
- remainReduceTime = this.parkFee.parkInfoEntity.maxonetimediscount;
|
|
|
- }
|
|
|
- // 超过上限取上限
|
|
|
- if (consumeTime > remainReduceTime) {
|
|
|
- consumeTime = remainReduceTime;
|
|
|
- }
|
|
|
- // 拆分消费减免
|
|
|
- if (isSplit === 0) {
|
|
|
- // 减免时长超出停车时长取停车时长
|
|
|
- if (consumeTime > serviceTime) {
|
|
|
- consumeTime = serviceTime;
|
|
|
- }
|
|
|
- }
|
|
|
- // 消费减免费用
|
|
|
- consumeFee = consumeTime * this.hourMoney;
|
|
|
- }
|
|
|
-
|
|
|
- /*************************************************** 杭州 ***************************************************/
|
|
|
- if (this.parkMallCode === 2) {
|
|
|
- // 超过上限取上限
|
|
|
- if (consumeTime > this.parkFee.parkInfoEntity.remainReduceTime) {
|
|
|
- consumeTime = this.parkFee.parkInfoEntity.remainReduceTime;
|
|
|
- }
|
|
|
- // 消费减免费用
|
|
|
- consumeFee = consumeTime * this.hourMoney;
|
|
|
- }
|
|
|
-
|
|
|
- /*************************************************** 沈阳 ***************************************************/
|
|
|
- if (this.parkMallCode === 4) {
|
|
|
- // 超过上限取上限
|
|
|
- if (
|
|
|
- consumeTime >
|
|
|
- this.parkFee.parkInfoEntity.maxOneDayHour -
|
|
|
- this.parkFee.parkInfoEntity.ticketandMemeberGradeAndConsumeUseHour
|
|
|
- ) {
|
|
|
- consumeTime =
|
|
|
- this.parkFee.parkInfoEntity.maxOneDayHour -
|
|
|
- this.parkFee.parkInfoEntity.ticketandMemeberGradeAndConsumeUseHour;
|
|
|
- }
|
|
|
- // 消费减免费用
|
|
|
- consumeFee = consumeTime * this.hourMoney;
|
|
|
- }
|
|
|
-
|
|
|
- // 实时显示
|
|
|
- this.checkedTotal++;
|
|
|
- this.discountTotal = {
|
|
|
- memberGradeFee: 0,
|
|
|
- consumeFee: consumeFee,
|
|
|
- useConsumeFee: this.parkFee.parkConsumeReducesEntityList[0].consumerLimit,
|
|
|
- time: consumeTime,
|
|
|
- fee: consumeFee,
|
|
|
- };
|
|
|
- // 存入缓存(用于子页面停车优惠画面显示)
|
|
|
- const checkedList = uni.getStorageSync('checkedList');
|
|
|
- console.log('用于子页面停车优惠画面显示', checkedList);
|
|
|
- if (checkedList) {
|
|
|
- uni.setStorageSync('checkedList', checkedList);
|
|
|
- } else {
|
|
|
- uni.setStorageSync('checkedList', ['reduces']);
|
|
|
- }
|
|
|
- uni.setStorageSync('checkedTotal', this.checkedTotal || 0);
|
|
|
- uni.setStorageSync('discountTotal', this.discountTotal);
|
|
|
- },
|
|
|
-
|
|
|
- // 自动选取会员等级减免
|
|
|
- autoMember() {
|
|
|
- console.log('我想看看', this.checkedList);
|
|
|
- // 支付金额0 则无需后续减免
|
|
|
- if (!this.actualFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- const memberGradeTime =
|
|
|
- +this.parkFee.parkMemberOrderReducesEntityList[0].reduceContent || 0; // 会员等级减免时长
|
|
|
- const memberGradeFee = memberGradeTime * this.hourMoney; // 会员等级减免费用
|
|
|
-
|
|
|
- // 浦东每次超限
|
|
|
- if (this.parkMallCode === 1) {
|
|
|
- // 超出每次减免上限 则无需后续
|
|
|
- if (this.discountTotalFee >= this.maxonetimediscountFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 沈阳(会员等级+消费+电子券)、深圳每日超限
|
|
|
- if (this.parkMallCode === 4 || this.parkMallCode === 5) {
|
|
|
- // 超出每日减免上限 则无需后续
|
|
|
- if (this.discountTotalFee >= this.maxonedaydiscountFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 实时显示
|
|
|
- let checkedList = [];
|
|
|
- if (uni.getStorageSync('discountTotal')) {
|
|
|
- this.discountTotal.memberGradeFee = memberGradeFee;
|
|
|
- this.discountTotal.time += memberGradeTime;
|
|
|
- this.discountTotal.fee += memberGradeFee;
|
|
|
- checkedList = ['reduces', 'member'];
|
|
|
- } else {
|
|
|
- this.discountTotal = {
|
|
|
- memberGradeFee: memberGradeFee,
|
|
|
- consumeFee: 0,
|
|
|
- useConsumeFee: 0,
|
|
|
- time: memberGradeTime,
|
|
|
- fee: memberGradeFee,
|
|
|
- };
|
|
|
- checkedList = ['member'];
|
|
|
- }
|
|
|
- console.log('判断是否有执行', this.checkedList);
|
|
|
- this.checkedTotal++;
|
|
|
-
|
|
|
- // 存入缓存(用于子页面停车优惠画面显示)
|
|
|
- uni.setStorageSync('checkedList', checkedList);
|
|
|
- uni.setStorageSync('checkedTotal', this.checkedTotal || 0);
|
|
|
- uni.setStorageSync('discountTotal', this.discountTotal);
|
|
|
- },
|
|
|
-
|
|
|
- // 自动选取电子券减免
|
|
|
- autoCoupon(serviceFee) {
|
|
|
- // console.log('查看 actualFee 的状态', this.actualFee);
|
|
|
- // 支付金额0 则无需后续减免
|
|
|
- if (!this.actualFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 浦东 超出每次减免上限 则无需后续
|
|
|
- if (
|
|
|
- this.parkMallCode === 1 &&
|
|
|
- this.discountTotalFee >= this.maxonetimediscountFee
|
|
|
- ) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 沈阳(会员等级+消费+电子券)、深圳 超出每日减免上限 则无需后续
|
|
|
- if (
|
|
|
- (this.parkMallCode === 4 || this.parkMallCode === 5) &&
|
|
|
- this.discountTotalFee >= this.maxonedaydiscountFee
|
|
|
- ) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 杭州 超出电子券使用数量上限 则无需后续
|
|
|
- if (
|
|
|
- this.parkMallCode === 2 &&
|
|
|
- this.parkFee.parkInfoEntity.useTicketNum ===
|
|
|
- this.parkFee.parkInfoEntity.couponcodeNum
|
|
|
- ) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- const checkedCouponList = []; // 所选电子券
|
|
|
- let couponList = this.parkFee.memberTicketList; // 所有电子券
|
|
|
- let couponFee = 0;
|
|
|
- let couponCode = '';
|
|
|
-
|
|
|
- // 电子券价值统一转换金额方便后续排序 type 1: 金额 2: 时长
|
|
|
- couponList.forEach((e) => {
|
|
|
- e.disabled = true;
|
|
|
- e.checked = false;
|
|
|
- if (e.carType == '2') {
|
|
|
- e.value = e.parktime * this.hourMoney;
|
|
|
- } else if (e.carType == '1') {
|
|
|
- e.value = e.ticketValue;
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 电子券按叠加规则分组
|
|
|
- const couponListRule1 = couponList.filter(
|
|
|
- (e) => e.superpositionrule == '1'
|
|
|
- ); // 不可叠加
|
|
|
- const couponListRule2 = couponList.filter(
|
|
|
- (e) => e.superpositionrule == '2'
|
|
|
- ); // 同类型可叠加
|
|
|
-
|
|
|
- // 电子券按价值排序
|
|
|
- if (couponListRule1 && couponListRule1.length > 1) {
|
|
|
- couponListRule1.sort(compare('value'));
|
|
|
- }
|
|
|
- if (couponListRule2 && couponListRule2.length > 1) {
|
|
|
- couponListRule2.sort(compare('value'));
|
|
|
- }
|
|
|
-
|
|
|
- // 排序后的全部电子券
|
|
|
- couponList = [...couponListRule1, ...couponListRule2];
|
|
|
-
|
|
|
- // 如果不可叠加电子券价值大于可叠加总和则使用不可叠加电子券
|
|
|
- let couponListRule1Max = 0;
|
|
|
- if (couponListRule1 && couponListRule1.length) {
|
|
|
- couponListRule1Max = couponListRule1[couponListRule1.length - 1].value;
|
|
|
- }
|
|
|
- let couponListRule2Sum = 0;
|
|
|
- if (couponListRule2 && couponListRule2.length) {
|
|
|
- couponListRule2.forEach((e) => {
|
|
|
- couponListRule2Sum += e.value;
|
|
|
- });
|
|
|
- }
|
|
|
- let isCheckedRule1 = false;
|
|
|
- if (
|
|
|
- couponListRule1Max >= couponListRule2Sum &&
|
|
|
- couponListRule2Sum < serviceFee - this.discountTotalFee
|
|
|
- ) {
|
|
|
- isCheckedRule1 = true;
|
|
|
- }
|
|
|
-
|
|
|
- // 使用不可叠加电子券
|
|
|
- if (isCheckedRule1 && couponListRule1 && couponListRule1.length) {
|
|
|
- for (let i = 0; i < couponListRule1.length; i++) {
|
|
|
- const coupon = couponListRule1[i];
|
|
|
- const checkedIndex = couponList.findIndex(
|
|
|
- (e) => e.couponCode === coupon.couponCode
|
|
|
- );
|
|
|
-
|
|
|
- // 浦东每次上限处理
|
|
|
- if (this.parkMallCode === 1) {
|
|
|
- if (
|
|
|
- this.discountTotalFee + coupon.value >
|
|
|
- this.maxonetimediscountFee
|
|
|
- ) {
|
|
|
- couponList[checkedIndex - 1].checked = true;
|
|
|
- couponList[checkedIndex - 1].disabled = false;
|
|
|
- checkedCouponList.push(checkedIndex - 1);
|
|
|
- couponFee += coupon.value;
|
|
|
- couponCode += coupon.couponCode + '#';
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 沈阳(会员等级+消费+电子券)、深圳 超出每日减免上限处理
|
|
|
- if (this.parkMallCode === 4 || this.parkMallCode === 5) {
|
|
|
- if (
|
|
|
- this.discountTotalFee + coupon.value >
|
|
|
- this.maxonedaydiscountFee
|
|
|
- ) {
|
|
|
- couponList[checkedIndex - 1].checked = true;
|
|
|
- couponList[checkedIndex - 1].disabled = false;
|
|
|
- checkedCouponList.push(checkedIndex - 1);
|
|
|
- couponFee += coupon.value;
|
|
|
- couponCode += coupon.couponCode + '#';
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 若当前减免已经使费用减免为0则跳出循环
|
|
|
- if (coupon.value >= serviceFee - this.discountTotalFee) {
|
|
|
- couponList[checkedIndex].checked = true;
|
|
|
- couponList[checkedIndex].disabled = false;
|
|
|
- checkedCouponList.push(checkedIndex);
|
|
|
- couponFee += coupon.value;
|
|
|
- couponCode += coupon.couponCode + '#';
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- // 循环到最后一张券
|
|
|
- if (i === couponListRule1.length - 1) {
|
|
|
- couponList[checkedIndex].checked = true;
|
|
|
- couponList[checkedIndex].disabled = false;
|
|
|
- checkedCouponList.push(checkedIndex);
|
|
|
- couponFee += coupon.value;
|
|
|
- couponCode += coupon.couponCode + '#';
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // console.log('打印优惠券', couponListRule2);
|
|
|
- // 未使用规则1的电子券则继续
|
|
|
- if (!isCheckedRule1 && couponListRule2 && couponListRule2.length) {
|
|
|
- // 使用同类型可叠加电子券
|
|
|
- let sum = 0; // 电子券价值累加
|
|
|
- for (const coupon of couponListRule2) {
|
|
|
- sum += coupon.value;
|
|
|
- // 浦东每次上限处理
|
|
|
- if (
|
|
|
- this.parkMallCode === 1 &&
|
|
|
- this.discountTotalFee + sum > this.maxonetimediscountFee
|
|
|
- ) {
|
|
|
- break;
|
|
|
- }
|
|
|
- // 沈阳(会员等级+消费+电子券)、深圳每日上限处理
|
|
|
- if (
|
|
|
- (this.parkMallCode === 4 || this.parkMallCode === 5) &&
|
|
|
- this.discountTotalFee + sum > this.maxonedaydiscountFee
|
|
|
- ) {
|
|
|
- break;
|
|
|
- }
|
|
|
- const checkedIndex = couponList.findIndex(
|
|
|
- (e) => e.couponCode === coupon.couponCode
|
|
|
- );
|
|
|
- couponList[checkedIndex].checked = true;
|
|
|
- couponList[checkedIndex].disabled = false;
|
|
|
- checkedCouponList.push(checkedIndex);
|
|
|
- couponFee = sum;
|
|
|
- couponCode += coupon.couponCode + '#';
|
|
|
- // 杭州电子券使用数量上限处理
|
|
|
- if (
|
|
|
- this.parkMallCode === 2 &&
|
|
|
- checkedCouponList.length ===
|
|
|
- this.parkFee.parkInfoEntity.useTicketNum -
|
|
|
- this.parkFee.parkInfoEntity.couponcodeNum
|
|
|
- ) {
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- // 若当前减免已经使费用减免为0则跳出循环
|
|
|
- if (sum >= serviceFee - this.discountTotalFee) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 实时显示
|
|
|
- if (couponCode.lastIndexOf('#') === couponCode.length - 1) {
|
|
|
- couponCode = couponCode.slice(0, couponCode.length - 1);
|
|
|
- }
|
|
|
- this.couponInfo = {
|
|
|
- couponfee: couponFee,
|
|
|
- couponcode: couponCode,
|
|
|
- };
|
|
|
- // console.log('验证', checkedCouponList);
|
|
|
- this.checkedCouponCount = checkedCouponList.length;
|
|
|
-
|
|
|
- // 存入缓存(用于子页面停车优惠画面显示)
|
|
|
- // console.log('将 checkedCouponList 写入缓存----》');
|
|
|
- uni.setStorageSync('checkedCouponList', checkedCouponList);
|
|
|
- uni.setStorageSync('list', couponList);
|
|
|
- uni.setStorageSync('couponInfo', this.couponInfo);
|
|
|
- },
|
|
|
-
|
|
|
- // 自动选取积分减免
|
|
|
- autoBonus(serviceFee) {
|
|
|
- // 支付金额0 则无需后续减免
|
|
|
- if (!this.actualFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 浦东 超出每次减免上限 则无需后续
|
|
|
- if (
|
|
|
- this.parkMallCode === 1 &&
|
|
|
- this.discountTotalFee >= this.maxonetimediscountFee
|
|
|
- ) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- // 深圳积分特殊处理(金额计算) 其它停车场小时计算
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- if (this.discountTotalFee >= this.maxonedaydiscountFee) {
|
|
|
- return;
|
|
|
- }
|
|
|
- let bonus = this.bonus;
|
|
|
- // 剩余可减免金额
|
|
|
- const remainDiscountFee =
|
|
|
- this.maxonedaydiscountFee - this.discountTotalFee;
|
|
|
- // 剩余停车金额
|
|
|
- let remainFee = serviceFee - this.discountTotalFee;
|
|
|
- if (remainFee > remainDiscountFee) {
|
|
|
- remainFee = remainDiscountFee;
|
|
|
- }
|
|
|
- let bonusAll = (remainFee * this.integral) / this.integralToValue; // 全部减免所需积分
|
|
|
- if (bonusAll < this.integral) {
|
|
|
- bonusAll = this.integral;
|
|
|
- }
|
|
|
- // 取余
|
|
|
- const remainBonus = bonusAll % this.integral;
|
|
|
- const remainMyBonus = this.bonus % this.integral;
|
|
|
- // 如果有余数 做倍数处理
|
|
|
- if (remainBonus) {
|
|
|
- bonusAll = bonusAll - remainBonus + this.integral;
|
|
|
- }
|
|
|
- if (remainMyBonus) {
|
|
|
- bonus = this.bonus - remainMyBonus;
|
|
|
- }
|
|
|
- if (bonus <= bonusAll) {
|
|
|
- // 积分可兑换多少金额 小数向下取整
|
|
|
- this.duration = Math.floor(
|
|
|
- (bonus * this.integralToValue) / this.integral
|
|
|
- );
|
|
|
- } else {
|
|
|
- this.duration = (bonusAll * this.integralToValue) / this.integral;
|
|
|
- }
|
|
|
- if (this.duration > this.integralMaxMoney) {
|
|
|
- this.duration = this.integralMaxMoney;
|
|
|
- }
|
|
|
- } else {
|
|
|
- // 剩余停车时长(有小数情况因此向上取整)
|
|
|
- const serviceTime = Math.ceil(
|
|
|
- (serviceFee - this.discountTotalFee) / this.hourMoney
|
|
|
- );
|
|
|
- const bonusAll = serviceTime * this.integral; // 全部减免所需积分
|
|
|
- if (this.bonus <= bonusAll) {
|
|
|
- // 积分不够兑换整小时 向下取整
|
|
|
- this.duration = Math.floor(this.bonus / this.integral);
|
|
|
- } else {
|
|
|
- this.duration = serviceTime;
|
|
|
- }
|
|
|
- }
|
|
|
- // 浦东每次减免上限处理
|
|
|
- if (this.parkMallCode === 1) {
|
|
|
- const bonusMax = Math.floor(
|
|
|
- (this.maxonetimediscountFee - this.discountTotalFee) / this.hourMoney
|
|
|
- );
|
|
|
- if (this.duration > bonusMax) {
|
|
|
- this.duration = bonusMax;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 北京积分减免每日上限处理
|
|
|
- if (this.parkMallCode === 3) {
|
|
|
- const bonusMax =
|
|
|
- this.parkFee.parkInfoEntity.integralMaxHour -
|
|
|
- this.parkFee.parkInfoEntity.integralUseHour || 0;
|
|
|
- if (this.duration > bonusMax) {
|
|
|
- this.duration = bonusMax;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- this.bonus -= (this.duration * this.integral) / this.integralToValue;
|
|
|
- this.bonusfee = this.duration;
|
|
|
- } else {
|
|
|
- this.bonus -= this.duration * this.integral;
|
|
|
- this.bonusfee = this.duration * this.hourMoney;
|
|
|
- }
|
|
|
- this.durationCopy = this.duration;
|
|
|
- // this.bonusCopy = this.bonus;
|
|
|
- this.$store.commit('SET_BONUS_COPY', this.bonus);
|
|
|
- },
|
|
|
- // 北京新会员自动选取积分减免
|
|
|
- newMemberautoBonus(serviceFee) {
|
|
|
- const serviceTime = Math.ceil(
|
|
|
- (serviceFee - this.discountTotalFee) / this.hourMoney
|
|
|
- );
|
|
|
- const bonusAll = serviceTime * this.integralNew; // 全部减免所需积分
|
|
|
- if (this.bonus <= bonusAll) {
|
|
|
- // 积分不够兑换整小时 向下取整
|
|
|
- this.durationNew = Math.floor(this.bonus / this.integralNew);
|
|
|
- } else {
|
|
|
- this.durationNew = serviceTime;
|
|
|
- }
|
|
|
-
|
|
|
- const bonusMaxNew =
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].integralMaxHour -
|
|
|
- this.parkFee.parkIntegraltomoneyList[1].integralUseHour || 0;
|
|
|
- if (this.durationNew > bonusMaxNew) {
|
|
|
- this.durationNew = bonusMaxNew;
|
|
|
- }
|
|
|
-
|
|
|
- this.bonus -= this.integralNew * this.durationNew;
|
|
|
- this.durationCopy2 = this.durationNew;
|
|
|
- this.newBonusfee = this.durationNew * this.hourMoney;
|
|
|
- // this.bonusCopy = this.bonus;
|
|
|
- this.$store.commit('SET_BONUS_COPY', this.bonus);
|
|
|
- },
|
|
|
- // 节流函数
|
|
|
- throttle(fc, waitTime = 1500, imme = true) {
|
|
|
- if (imme) {
|
|
|
- if (!this.flag) {
|
|
|
- this.flag = true;
|
|
|
- typeof fc === 'function' && fc();
|
|
|
- this.timer = setTimeout(() => {
|
|
|
- this.flag = false;
|
|
|
- }, waitTime);
|
|
|
- }
|
|
|
- } else {
|
|
|
- if (!this.flag) {
|
|
|
- this.flag = true;
|
|
|
- this.timer = setTimeout(() => {
|
|
|
- this.flag = false;
|
|
|
- typeof fc === 'function' && fc();
|
|
|
- }, waitTime);
|
|
|
- }
|
|
|
+ const res = await checkOut(this.$route.query.carno)
|
|
|
+ console.log(res)
|
|
|
+ } catch ( err ) {
|
|
|
+ console.log(err)
|
|
|
}
|
|
|
- },
|
|
|
- // 支付前
|
|
|
- async toPay() {
|
|
|
- // await this.weixinH5Pay()
|
|
|
- // return
|
|
|
- this.throttle(() => {
|
|
|
- // 北京特殊处理
|
|
|
- // if (this.parkMallCode === 3 && this.discountTotalFee) {
|
|
|
- // return uni.showModal({
|
|
|
- // title: '提示',
|
|
|
- // content: '请确认是否使用优惠,确认后无法返还!',
|
|
|
- // success: (res) => {
|
|
|
- // if (res.confirm) {
|
|
|
- // this.goPay();
|
|
|
- // }
|
|
|
- // },
|
|
|
- // });
|
|
|
- // }
|
|
|
- this.goPay();
|
|
|
- }, 3000);
|
|
|
- },
|
|
|
|
|
|
- // 支付
|
|
|
- goPay() {
|
|
|
- if (
|
|
|
- !this.parkInfo.servicefee ||
|
|
|
- (this.member && !this.parkFee.parkInfoEntity)
|
|
|
- ) {
|
|
|
- return;
|
|
|
- }
|
|
|
- // console.log(159515951595, this.$kipAppId);
|
|
|
- // this.kerryPayment()
|
|
|
- // return
|
|
|
- // console.log(1580, this.parkMallCode);
|
|
|
- // window.toWXSendMsg({
|
|
|
- // type: 'openWxPay',
|
|
|
- // options: { title: '1589', mask: true },
|
|
|
- // });
|
|
|
- // window.subscribe('wxPayOver',(options) =>{
|
|
|
- // console.log(1596, options)
|
|
|
- // })
|
|
|
- // if (
|
|
|
- // !this.parkInfo.servicefee ||
|
|
|
- // (this.member && !this.parkFee.parkInfoEntity)
|
|
|
- // ) {
|
|
|
- // return;
|
|
|
- // }
|
|
|
- this.Toastloading = Toast.loading({
|
|
|
- message: '加载中',
|
|
|
- duration: 0,
|
|
|
- forbidClick: true,
|
|
|
- });
|
|
|
- this.btnLoading = true;
|
|
|
- let bonus = this.duration * this.integral;
|
|
|
- // 深圳特殊处理(单位:金额)
|
|
|
- if (this.parkMallCode === 5) {
|
|
|
- bonus = (this.duration * this.integral) / this.integralToValue;
|
|
|
- }
|
|
|
- // const openId = MemberCacheTool.getOpenId(app);
|
|
|
- // const openId = 'oIUfO5QBRfEmnaqj7To0C4_0JUTA';
|
|
|
- const openId = uni.getStorageSync('openid');
|
|
|
- // console.log(1614, this.actualFee);
|
|
|
- const params = {
|
|
|
- carno: this.parkInfo.carno,
|
|
|
- mallid: this.mallid,
|
|
|
- groupId: this.groupId,
|
|
|
- openId: openId,
|
|
|
- vipcode: this.member?.vipcode || uni.getStorageSync('member')?.vipcode,
|
|
|
- createuser: 'sys_miniprogram',
|
|
|
- orderno: this.parkInfo.orderno,
|
|
|
- bonusfee: this.bonusfee * 100,
|
|
|
- bonus: bonus,
|
|
|
- couponfee: this.couponInfo.couponfee * 100 || 0,
|
|
|
- couponfeeMin: (this.couponInfo.couponfee / this.hourMoney) * 60 || 0,
|
|
|
- couponcode: this.couponInfo.couponcode,
|
|
|
- paperCoupons: JSON.stringify(this.paperCouponInfo.paperCouponList), // 纸质优惠券券码 多个以#分割
|
|
|
- paperCouponCode: this.paperCouponInfo.paperCouponcode, // 纸质优惠券券码 多个以#分割
|
|
|
- paperCouponFee: this.paperCouponInfo.paperDiscountFee * 100 || 0, // 纸质优惠券优惠金额,单位:分
|
|
|
- paperCouponFeeMin:
|
|
|
- parseInt(this.paperCouponInfo.paperDiscountTime * 60) || 0, // 纸质优惠券优惠时长,单位:分钟
|
|
|
- bonusFeeMin: this.duration * 60, // 积分抵扣时长,单位:分钟
|
|
|
- consumeFeeMin:
|
|
|
- (this.discountTotal.consumeFee / this.hourMoney) * 60 || 0, // 消费减免时长,单位:分钟
|
|
|
- firstParkFeeMin:
|
|
|
- (this.discountTotal.firstParkFee / this.hourMoney) * 60 || 0, // 首停减免时长 单位 分钟
|
|
|
- memberGradeFeeMin:
|
|
|
- (this.discountTotal.memberGradeFee / this.hourMoney) * 60 || 0, // 会员等级减免时长,单位:分钟
|
|
|
- consumeFee: this.discountTotal.consumeFee * 100 || 0,
|
|
|
- consumeFeeHour: this.discountTotal.consumeFee / this.hourMoney || 0,
|
|
|
- useConsumeFee:
|
|
|
- this.parkMallCode === 3 ? '0.0' : this.discountTotal.useConsumeFee,
|
|
|
- memberGradeFee: this.discountTotal.memberGradeFee * 100 || 0,
|
|
|
- memberGradeFeeHour:
|
|
|
- this.discountTotal.memberGradeFee / this.hourMoney || 0,
|
|
|
- firstParkFee: this.discountTotal.firstParkFee * 100 || 0,
|
|
|
- usetotalfee:
|
|
|
- ((this.discountTotal.memberGradeFee || 0) +
|
|
|
- (this.discountTotal.consumeFee || 0) +
|
|
|
- this.bonusfee +
|
|
|
- (this.couponInfo.couponfee || 0) +
|
|
|
- (this.paperCouponInfo.paperDiscountFee || 0)) *
|
|
|
- 100,
|
|
|
- payfee: parseFloat((this.actualFee * 100).toFixed(2)),
|
|
|
- totalfee:
|
|
|
- this.discountTotalFee * 100 < this.parkInfo.servicefee
|
|
|
- ? this.discountTotalFee * 100
|
|
|
- : this.parkInfo.servicefee,
|
|
|
- paytype: this.actualFee > 0 ? 3 : 1,
|
|
|
- projectId: this.projectId,
|
|
|
- };
|
|
|
- // console.log(1663, this.actualFee);
|
|
|
- let path =
|
|
|
- this.actualFee > 0
|
|
|
- ? 'api/1.0/park/weixinPay'
|
|
|
- : 'api/1.0/park/notWeixinPay';
|
|
|
- // 北京特殊处理
|
|
|
- // if (this.parkMallCode === 3) {
|
|
|
- // path = 'api/1.0/park/dealParkOrderBj';
|
|
|
- // }
|
|
|
- this.$md(params);
|
|
|
- this.$request({
|
|
|
- url: this.$baseURL + path,
|
|
|
- data: params,
|
|
|
- method: 'POST',
|
|
|
- header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
- uni.hideLoading();
|
|
|
- if (res.data.code === 0) {
|
|
|
- // 北京特殊处理
|
|
|
- // if (this.parkMallCode === 3 && false) {
|
|
|
- // if (!res.data.data.syncId) {
|
|
|
- // uni.showToast({
|
|
|
- // title: '缴费成功',
|
|
|
- // icon: 'none',
|
|
|
- // });
|
|
|
- // this.$router.back();
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // console.log(this.bindflag, 'bindflag');
|
|
|
- // const accountInfo = uni.getAccountInfoSync();
|
|
|
- // const {
|
|
|
- // miniProgram: { envVersion },
|
|
|
- // } = accountInfo;
|
|
|
-
|
|
|
- // if (this.bindflag === 0) {
|
|
|
- // uni.navigateToMiniProgram({
|
|
|
- // appId: 'wx192b7d2e8dcbefd0',
|
|
|
- // path: this.$etcpAppPath,
|
|
|
- // extraData: {
|
|
|
- // params: {
|
|
|
- // token: res.data.data.token,
|
|
|
- // syncId: res.data.data.syncId,
|
|
|
- // payType: 6,
|
|
|
- // CarNumber: res.data.data.CarNumber,
|
|
|
- // actionId: 1,
|
|
|
- // payAcType: 2,
|
|
|
- // },
|
|
|
- // },
|
|
|
- // envVersion: 'trial',
|
|
|
- // success: (res) => {
|
|
|
- // console.log(res);
|
|
|
- // this.$router.back();
|
|
|
- // },
|
|
|
- // });
|
|
|
- // } else if (this.bindflag === 1) {
|
|
|
- // uni.navigateToMiniProgram({
|
|
|
- // appId: 'wx192b7d2e8dcbefd0',
|
|
|
- // path: this.$etcpAppPath,
|
|
|
- // extraData: {
|
|
|
- // params: {
|
|
|
- // token: res.data.data.token,
|
|
|
- // syncId: res.data.data.syncId,
|
|
|
- // payType: 6,
|
|
|
- // CarNumber: res.data.data.CarNumber,
|
|
|
- // actionId: 1,
|
|
|
- // },
|
|
|
- // },
|
|
|
- // envVersion: 'trial',
|
|
|
- // success: (res) => {
|
|
|
- // console.log(res);
|
|
|
- // this.$router.back();
|
|
|
- // },
|
|
|
- // });
|
|
|
- // }
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // console.log(17211721172117211721);
|
|
|
- if (this.actualFee > 0) {
|
|
|
- // 微信支付
|
|
|
- // console.log(1700, res);
|
|
|
- // return
|
|
|
- this.kerryPayment(res.data.data, params);
|
|
|
- } else {
|
|
|
- // 埋点位置
|
|
|
- this.sensorsClick('$ClickParkingPay', {
|
|
|
- car_no: params.carno,
|
|
|
- pay_fee: params.payfee,
|
|
|
- total_fee: params.totalfee,
|
|
|
- redirect_path: 'pages/parkingFee/parkingFeeSuccess',
|
|
|
- });
|
|
|
- this.$store.commit('cachedViews/DEL_CACHED_VIEW', {
|
|
|
- name: 'parkingFeeDetail'
|
|
|
- });
|
|
|
- this.$router.replace({
|
|
|
- path: 'parkingFeeSuccess?carno=' + this.parkInfo.carno,
|
|
|
- });
|
|
|
- }
|
|
|
- } else {
|
|
|
- uni.showModal({
|
|
|
- showCancel: false,
|
|
|
- title: '提示',
|
|
|
- content: res.data.msg,
|
|
|
- complete: (r) => {
|
|
|
- // uni.navigateBack({})
|
|
|
- this.createParkOrder();
|
|
|
- },
|
|
|
- });
|
|
|
- }
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.log(err);
|
|
|
- uni.hideLoading();
|
|
|
- uni.showToast({
|
|
|
- title: JSON.stringify(err),
|
|
|
- icon: 'none',
|
|
|
- });
|
|
|
- });
|
|
|
- },
|
|
|
- // 埋点方法
|
|
|
- sensorsClick(eventName, params) {
|
|
|
- let optionsQuery = uni.getStorageSync('options_query');
|
|
|
- let fixedParams = {
|
|
|
- cta_itemno: '',
|
|
|
- cta_name: '',
|
|
|
- previous_path: this.preUrl || '',
|
|
|
- // 原previous_path: uni.getStorageSync('previousUrl') || ''
|
|
|
- // previous_path: 使用sdk预置参数$referrer,
|
|
|
- $brand_id: uni.getStorageSync('groupId'),
|
|
|
- $location: uni.getStorageSync('mallid'),
|
|
|
- $channel: optionsQuery.channel || '',
|
|
|
- // $utm_lbs: this.optionsQuery.utm_lbs || '',
|
|
|
- $utm_channel: optionsQuery.utm_channel || '',
|
|
|
- $utm_method: optionsQuery.utm_method || '',
|
|
|
- $utm_source: optionsQuery.utm_source || '',
|
|
|
- $utm_function: optionsQuery.utm_function || '',
|
|
|
- $utm_user: optionsQuery.utm_user || '',
|
|
|
- },
|
|
|
- finalParams = Object.assign(fixedParams, params);
|
|
|
- this.$sensors.track(eventName, finalParams);
|
|
|
- },
|
|
|
- // 嘉里第三方支付接口
|
|
|
- kerryPayment(session = '011cad54-735f-4e92-8f1b-f22bdfe073cd', payParams) {
|
|
|
- const platform = getPlatform();
|
|
|
- let appId = uni.getStorageSync('appid');
|
|
|
- let openId = uni.getStorageSync('openid') || this.openid;
|
|
|
- if (platform === 'miniprogram') {
|
|
|
- appId =this.source === 'CRM' ? this.appId : 'wx92c3e55fbef6b2af';
|
|
|
- }
|
|
|
- const params = {
|
|
|
- region: 'cn',
|
|
|
- payChannel: 'OFFICIAL_ACCOUNT',
|
|
|
- // payChannel: 'MOBILE_WEB',
|
|
|
- payOption: 'WECHATPAY',
|
|
|
- appId: appId,
|
|
|
- // openId: 'oudWQ5SCDElfn-IQH6eBR5JesOz4', // 下的appid: wxd830fe4d1e04988e
|
|
|
- openId,
|
|
|
- };
|
|
|
- // console.log(1854, params);
|
|
|
- this.$md(params);
|
|
|
- // let path = `/profileApi/payment/v1/services/session/${session}/transactions`;
|
|
|
- let path = `${window.profileApi}/payment/v1/services/session/${session}/transactions`;
|
|
|
- this.$request({
|
|
|
- url: path,
|
|
|
- data: params,
|
|
|
- method: 'POST',
|
|
|
- header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
- })
|
|
|
- .then(async (res) => {
|
|
|
- this.Toastloading.clear();
|
|
|
- // console.log(1795, res);
|
|
|
- if (res.data?.code == '000000') {
|
|
|
- const prepayJson = res.data.data.params;
|
|
|
- const platform = getPlatform();
|
|
|
- // TODO: h5环境判断
|
|
|
- if (platform === 'micromessenger') {
|
|
|
- const weixinH5PayRes = await this.weixinH5Pay(prepayJson);
|
|
|
- // 微信支付完成,判断结果
|
|
|
- console.log(1784, weixinH5PayRes);
|
|
|
- // errMsg: 'requestPayment:ok'
|
|
|
- if (weixinH5PayRes?.errMsg === 'requestPayment:ok') {
|
|
|
- this.$store.commit('cachedViews/DEL_CACHED_VIEW', {
|
|
|
- name: 'parkingFeeDetail'
|
|
|
- });
|
|
|
- this.$router.replace({
|
|
|
- path: 'parkingFeeSuccess?carno=' + this.parkInfo.carno,
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.failedParkOrder();
|
|
|
- }
|
|
|
- } else {
|
|
|
- window.toWXSendMsg({
|
|
|
- type: 'openWxPay',
|
|
|
- options: {
|
|
|
- provider: 'wxpay',
|
|
|
- timeStamp: prepayJson.timeStamp,
|
|
|
- nonceStr: prepayJson.nonceStr,
|
|
|
- package: prepayJson.package,
|
|
|
- signType: prepayJson.signType,
|
|
|
- paySign: prepayJson.paySign,
|
|
|
- },
|
|
|
- });
|
|
|
- window.subscribe('wxPayOver', (options) => {
|
|
|
- this.Toastloading.clear();
|
|
|
- // console.log('微信支付结束之后的返回参数', options);
|
|
|
- // T-ODO: 在 qa 新发版前,只提示支付成功的信息(已处理成功信息)
|
|
|
- if (options?.wxPayOver === 'fail') {
|
|
|
- // console.log('支付失败');
|
|
|
- this.failedParkOrder();
|
|
|
- } else {
|
|
|
- this.btnLoading = false;
|
|
|
- this.$router.replace({
|
|
|
- path: 'parkingFeeSuccess?carno=' + this.parkInfo.carno,
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- return;
|
|
|
- // 微信支付接口
|
|
|
- // uni.requestPayment({
|
|
|
- // provider: 'wxpay',
|
|
|
- // timeStamp: prepayJson.timeStamp,
|
|
|
- // nonceStr: prepayJson.nonceStr,
|
|
|
- // package: prepayJson.package,
|
|
|
- // signType: prepayJson.signType,
|
|
|
- // paySign: prepayJson.paySign,
|
|
|
- // success: () => {
|
|
|
- // uni.showModal({
|
|
|
- // showCancel: false,
|
|
|
- // title: '提示',
|
|
|
- // content: '支付成功',
|
|
|
- // complete: () => {
|
|
|
- // this.sensorsClick('$ClickParkingPay', {
|
|
|
- // car_no: payParams.carno,
|
|
|
- // pay_fee: payParams.payfee,
|
|
|
- // total_fee: payParams.totalfee,
|
|
|
- // redirect_path: 'pages/parkingFee/parkingFeeSuccess',
|
|
|
- // });
|
|
|
- // this.$router.replace({
|
|
|
- // path: './parkingFeeSuccess?carno=' + this.parkInfo.carno,
|
|
|
- // });
|
|
|
- // },
|
|
|
- // });
|
|
|
- // },
|
|
|
- // fail: () => {
|
|
|
- // this.failedParkOrder();
|
|
|
- // },
|
|
|
- // });
|
|
|
- } else {
|
|
|
- this.failedParkOrder();
|
|
|
- }
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- // console.log(1854, err);
|
|
|
- this.failedParkOrder();
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- // 支付失败弹框 重新创建订单
|
|
|
- reCreateParkOrder() {
|
|
|
- // console.log('支付失败弹框 重新创建订单');
|
|
|
- Dialog.alert({
|
|
|
- title: '提示',
|
|
|
- message: '支付失败',
|
|
|
- confirmButtonColor: '#333',
|
|
|
- }).then(() => {
|
|
|
- this.btnLoading = false;
|
|
|
- this.createParkOrder();
|
|
|
- });
|
|
|
- // uni.showModal({
|
|
|
- // showCancel: false,
|
|
|
- // title: '提示',
|
|
|
- // content: '支付失败',
|
|
|
- // complete: (r) => {
|
|
|
- // this.createParkOrder();
|
|
|
- // },
|
|
|
- // });
|
|
|
- },
|
|
|
-
|
|
|
- // 支付失败后返还优惠券
|
|
|
- failedParkOrder() {
|
|
|
- this.Toastloading.clear();
|
|
|
- const param = {
|
|
|
- orderno: this.parkInfo.orderno,
|
|
|
- };
|
|
|
- this.$md(param);
|
|
|
- uni
|
|
|
- .request({
|
|
|
- url: this.$baseURL + 'api/1.0/park/failedParkOrder',
|
|
|
- data: param,
|
|
|
- method: 'POST',
|
|
|
- header: JSON.parse(uni.getStorageSync('handleUser')),
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
- this.reCreateParkOrder();
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- this.reCreateParkOrder();
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- //缴费说明隐藏显示
|
|
|
- togglePayinstruction() {
|
|
|
- this.isShow = !this.isShow;
|
|
|
- },
|
|
|
- // 微信公众号H5支付
|
|
|
- async weixinH5Pay(params) {
|
|
|
- // console.log(1897);
|
|
|
- if (window?.wxJsSdkConfigInitPromise) {
|
|
|
- await window.wxJsSdkConfigInitPromise;
|
|
|
- }
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- this.$wx.chooseWXPay({
|
|
|
- timestamp: params?.timeStamp,
|
|
|
- nonceStr: params?.nonceStr,
|
|
|
- package: params?.package,
|
|
|
- signType: params?.signType,
|
|
|
- paySign: params?.paySign,
|
|
|
- success: function (res) {
|
|
|
- // alert('success: ' + JSON.stringify(res));
|
|
|
- // res: {"errMsg":"chooseWXPay:cancel"}
|
|
|
- if (res.errMsg === 'chooseWXPay:ok') {
|
|
|
- resolve({ errMsg: 'requestPayment:ok' });
|
|
|
- } else {
|
|
|
- reject(res);
|
|
|
- }
|
|
|
- },
|
|
|
- cancel: function (res) {
|
|
|
- // alert('cancel: ' + JSON.stringify(res));
|
|
|
- // res: {"errMsg":"chooseWXPay:cancel"}
|
|
|
- resolve({ errMsg: 'requestPayment:cancel' });
|
|
|
- },
|
|
|
- fail: function (err) {
|
|
|
- // eslint-disable-next-line no-console
|
|
|
- console.error(err);
|
|
|
- reject(err);
|
|
|
- },
|
|
|
- });
|
|
|
- });
|
|
|
- },
|
|
|
- /*
|
|
|
- // 验证扫码环节
|
|
|
- scan() {
|
|
|
- wx.scanQRCode({
|
|
|
- desc: 'scanQRCode desc',
|
|
|
- needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
|
|
|
- // scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有
|
|
|
- success: (res) => {
|
|
|
- debugger;
|
|
|
- console.log(1945, res);
|
|
|
- // runScanFn(res);
|
|
|
- // this.formMsg.deviceCode = res.resultStr;
|
|
|
- },
|
|
|
- error: (res) => {
|
|
|
- debugger;
|
|
|
- console.log(1950, res);
|
|
|
- },
|
|
|
- });
|
|
|
- },*/
|
|
|
+ }
|
|
|
},
|
|
|
};
|