choosePayment.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. <template>
  2. <view>
  3. <u-modal
  4. v-model="payWayPop"
  5. :title-style="{ color: '#1E1E1E', fontSize: '34rpx' }"
  6. title="选择支付方式"
  7. width="600rpx"
  8. :show-confirm-button="false"
  9. :show-cancel-button="false"
  10. :mask-close-able="true"
  11. @input="modalClose"
  12. >
  13. <view class="pay-content">
  14. <view class="pay-list">
  15. <radio-group @change="payRadioChange">
  16. <template v-if="projectFlag !== 'zhenning' && projectFlag !== 'wudang'">
  17. <!-- #ifdef H5 || MP-WEIXIN -->
  18. <view class="pay-list-item" v-if="wxEnv" @click="payRadioClick('weixin')">
  19. <view class="pay-list-item-image">
  20. <image class="image" src="/static/img/wechat-icon-new.png" mode="aspectFit" />
  21. <view>微信支付</view>
  22. </view>
  23. <view class="radioBox">
  24. <radio color="#2DCF8C" value="weixin" :checked="'weixin' === radioCurrent" />
  25. </view>
  26. </view>
  27. <!-- #endif -->
  28. </template>
  29. <template v-if="alipayEnv && projectFlag === 'puding'">
  30. <view class="pay-list-item" @click="payRadioClick('juhe')">
  31. <view class="pay-list-item-image">
  32. <image class="image" src="/static/img/alipay-icon-new.png" mode="aspectFit" />
  33. <view>支付宝支付<text>随机立减最高10元</text></view>
  34. </view>
  35. <view class="radioBox">
  36. <radio color="#2DCF8C" value="juhe" :checked="'juhe' === radioCurrent" />
  37. </view>
  38. </view>
  39. </template>
  40. <view class="pay-list-item" @click="payRadioClick('gzyh')">
  41. <view class="pay-list-item-image">
  42. <image class="image" src="/static/img/gy-icon-new.png" mode="aspectFit" />
  43. <view>贵州银行</view>
  44. </view>
  45. <view class="radioBox">
  46. <radio color="#2DCF8C" value="gzyh" :checked="'gzyh' === radioCurrent" />
  47. </view>
  48. </view>
  49. <template v-if="projectFlag === 'zhenning'">
  50. <view class="pay-list-item" @click="payRadioClick('weixinzn')">
  51. <view class="pay-list-item-image">
  52. <image class="image" src="/static/img/wechat-icon-new.png" mode="aspectFit" />
  53. <view>微信/支付宝</view>
  54. </view>
  55. <view class="radioBox">
  56. <radio color="#2DCF8C" value="weixinzn" :checked="'weixinzn' === radioCurrent" />
  57. </view>
  58. </view>
  59. </template>
  60. <template v-if="projectFlag !== 'zhenning'">
  61. <view class="pay-list-item" @click="payRadioClick('juhe')">
  62. <view class="pay-list-item-image">
  63. <image class="image" src="/static/img/juhe-icon-new.png" mode="aspectFit" />
  64. <view>聚合支付</view>
  65. </view>
  66. <view class="radioBox">
  67. <radio color="#2DCF8C" value="juhe" :checked="'juhe' === radioCurrent" />
  68. </view>
  69. </view>
  70. </template>
  71. </radio-group>
  72. </view>
  73. <view class="pay-coupon" v-if="radioCurrent === 'weixin' && isShowCoupon">
  74. <u-cell-group :border="false">
  75. <u-cell-item
  76. icon=""
  77. title="优惠券"
  78. :value="couponPopup.currentCoupon.couponName || (couponPopup.couponList.length ? '暂未选择优惠券' : '无可用优惠券')"
  79. :border-bottom="false"
  80. @click="chooseCoupon"
  81. ></u-cell-item>
  82. </u-cell-group>
  83. </view>
  84. <view class="pay-money">
  85. <text class="discount-money" v-if="couponPopup.currentCoupon.couponContent && radioCurrent === 'weixin'"
  86. >¥ {{ getDifference(orderMoney, couponPopup.currentCoupon.couponContent).toFixed(2) }}</text
  87. >
  88. <text class="original-money" :class="couponPopup.currentCoupon.couponContent && radioCurrent === 'weixin' && 'original-discount-money'"
  89. >¥ {{ orderMoney }}</text
  90. >
  91. </view>
  92. <view class="pay-btn">
  93. <u-button type="primary" shape="circle" :disabled="!radioCurrent" @tap="$u.debounce(immediatePayment, 1500, true)">立即支付</u-button>
  94. </view>
  95. </view>
  96. </u-modal>
  97. <!-- 选择优惠券弹框 -->
  98. <u-popup v-model="couponPopup.show" mode="top" length="100%">
  99. <view class="coupon-popup">
  100. <u-navbar
  101. back-text=""
  102. title="我的优惠券"
  103. :background="couponPopup.background"
  104. title-color="#fff"
  105. back-icon-color="#fff"
  106. :custom-back="customBack"
  107. />
  108. <view class="coupon-popup-list">
  109. <template v-if="couponPopup.couponList.length">
  110. <radio-group @change="couponRadioChange">
  111. <view class="coupon-popup-list-item" v-for="(item, index) in couponPopup.couponList" :key="index">
  112. <view class="coupon-popup-list-item-top">
  113. <view class="coupon-popup-list-item-top-left">
  114. <view class="cplitl-left">
  115. <view>
  116. <text>¥</text>
  117. <text>{{ item.couponContent }}</text>
  118. </view>
  119. <view class="cplitl-left-bottom">{{ Number(item.threshold) > 0 ? `停车时长满${item.threshold}分钟` : '无门槛' }}</view>
  120. </view>
  121. <view class="cplitl-right">
  122. <view>{{ item.couponName }}</view>
  123. <view>有限期:剩余{{ calcValidity(item.startTime, item.endTime) }}</view>
  124. </view>
  125. </view>
  126. <view class="coupon-popup-list-item-top-right">
  127. <radio color="#FF6D6D" :value="item.id" :checked="item.id === couponPopup.radioCurrent" @click="couponItemClick(item)" />
  128. </view>
  129. </view>
  130. <view class="coupon-popup-list-item-bottom">
  131. 适用停车点:
  132. <template v-if="item.parkList">
  133. <template v-if="item.parkList.length > 1"> 适用多个停车点 </template>
  134. <template v-else> 仅限{{ item.parkList.map((item) => item.parkName).join('、') }} </template>
  135. <template v-if="item.parkList && item.parkList.length > 1">
  136. <view class="cplib-point">
  137. <u-read-more
  138. text-indent="0"
  139. show-height="0"
  140. :toggle="true"
  141. :shadow-style="{ backgroundImage: 'none' }"
  142. fontSize="20rpx"
  143. close-text="展开所有停车点"
  144. >
  145. <view class="cplib-point-content">{{ item.parkList.map((item) => item.parkName).join('、') }}</view>
  146. </u-read-more>
  147. </view>
  148. </template>
  149. </template>
  150. </view>
  151. </view>
  152. </radio-group>
  153. </template>
  154. <template v-else>
  155. <u-empty text="没有适合的优惠券" mode="coupon" margin-top="300"></u-empty>
  156. </template>
  157. </view>
  158. <view class="coupon-popup-btn">
  159. <u-button type="primary" shape="circle" @click="confimCoupon">确 定</u-button>
  160. </view>
  161. </view>
  162. </u-popup>
  163. <u-toast ref="uToast" />
  164. </view>
  165. </template>
  166. <script>
  167. import { getEnvIsWx, getEnvIsAlipay } from '@/utils/judgEnvironment.js';
  168. import $wxPay from '@/utils/wxPay.js';
  169. export default {
  170. props: {
  171. // 订单数组
  172. curOrderList: {
  173. type: Array,
  174. default: null
  175. },
  176. // 设备编号
  177. deviceNo: {
  178. type: String,
  179. default: null
  180. },
  181. // 地磁支付需要字段
  182. payeeId: {
  183. type: String,
  184. default: undefined
  185. },
  186. // 地磁支付需要字段
  187. payeeName: {
  188. type: String,
  189. default: undefined
  190. },
  191. // 扫码支付需要字段
  192. sanPay: {
  193. type: Boolean,
  194. default: false
  195. },
  196. // 追缴类型
  197. pursueType: {
  198. type: String,
  199. default: undefined
  200. },
  201. // 车牌号
  202. vehicleNo: {
  203. type: String,
  204. default: undefined
  205. },
  206. // 跳转页面
  207. jumpUrl: {
  208. type: String,
  209. default: null
  210. },
  211. // 出口扫码 接口不一样
  212. exportFlag: {
  213. type: Boolean,
  214. default: false
  215. },
  216. // 区分包月支付
  217. isMonthPay: {
  218. type: Boolean,
  219. default: false
  220. },
  221. // 包月id
  222. monthId: {
  223. type: String,
  224. default: null
  225. },
  226. // 室内扫码
  227. isIndoor: {
  228. type: Boolean,
  229. default: false
  230. }
  231. },
  232. data() {
  233. return {
  234. // 支付弹框显示
  235. payWayPop: false,
  236. // 是否微信环境
  237. wxEnv: true,
  238. // 支付宝环境
  239. alipayEnv: true,
  240. // 支付方式选择
  241. radioCurrent: '',
  242. // 订单金额
  243. orderMoney: '',
  244. // 显示优惠券选项
  245. isShowCoupon: false,
  246. // 是否取消优惠券标识
  247. isCancelCoupon: false,
  248. // 选择优惠券弹框
  249. couponPopup: {
  250. // 弹框标识
  251. show: false,
  252. // 优惠券列表
  253. couponList: [],
  254. // 优惠券选中项value
  255. radioCurrent: '',
  256. // navbar背景
  257. background: {
  258. backgroundColor: '#008CFF'
  259. },
  260. // 优惠券选中项
  261. currentCoupon: {}
  262. }
  263. };
  264. },
  265. methods: {
  266. /**
  267. * 打开弹框触发
  268. * @date 2023-02-17
  269. * @param {any} details
  270. * @param {any} numType single 单笔订单 multiple 多比订单 用于区分多笔订单不能使用优惠券
  271. * @param {any} orderType road 路段订单 parking 停车场订单 用于区分路段订单不使用优惠券
  272. * @returns {any}
  273. */
  274. openPopup(details, numType = 'single', orderType = 'road') {
  275. // 获取环境信息
  276. this.wxEnv = getEnvIsWx();
  277. // 判断支付宝环境
  278. this.alipayEnv = getEnvIsAlipay();
  279. if (this.projectFlag === 'zhenning') {
  280. this.radioCurrent = 'weixinzn';
  281. } else if (this.projectFlag === 'wudang') {
  282. this.radioCurrent = 'juhe';
  283. } else if (this.wxEnv) {
  284. this.radioCurrent = 'weixin';
  285. } else {
  286. this.radioCurrent = 'juhe';
  287. }
  288. // 打开弹出层
  289. this.payWayPop = true;
  290. // 计算订单金额
  291. this.orderMoney = details.payAmount.toFixed(2);
  292. // 如果是单个停车订单,且是路边停车,且不是月卡支付,则显示优惠券
  293. if (numType === 'single' && orderType === 'parking' && !this.isMonthPay && this.wxEnv) {
  294. this.isShowCoupon = true;
  295. this.isCancelCoupon = true;
  296. this.getCouponList(details.id);
  297. }
  298. },
  299. /**
  300. * 获取优惠券列表
  301. * @date 2023-02-17
  302. * @param {any} orderId
  303. * @returns {any}
  304. */
  305. getCouponList(orderId) {
  306. this.$u.api.getCouponByOrderIdApi({ orderId }).then((res) => {
  307. this.couponPopup.couponList = res?.data ?? [];
  308. });
  309. },
  310. /**
  311. * 选中支付类型
  312. * @date 2023-02-17
  313. * @param {any} {detail}
  314. * @returns {any}
  315. */
  316. payRadioChange({ detail }) {
  317. this.radioCurrent = detail.value;
  318. },
  319. payRadioClick(value) {
  320. this.radioCurrent = value;
  321. },
  322. /**
  323. * 选中优惠券
  324. * @date 2023-02-17
  325. * @returns {any}
  326. */
  327. chooseCoupon() {
  328. this.couponPopup.show = true;
  329. },
  330. /**
  331. * 贵阳银行支付
  332. * @param {Array} orderList 需要支付的订单号组成的数组
  333. * @param {String} deviceNo 设备编号(只有车位锁部分有)
  334. * */
  335. async gyBankPay() {
  336. const params = {
  337. orderList: this.curOrderList,
  338. deviceNo: this.deviceNo,
  339. jumpUrl: this.jumpUrl,
  340. payeeId: this.payeeId,
  341. payeeName: this.payeeName,
  342. pursueType: this.pursueType,
  343. vehicleNo: this.vehicleNo,
  344. sanPay: this.sanPay
  345. };
  346. const apiCall = this.exportFlag ? this.$u.api.quickPayExportApi : this.$u.api.payGzbank;
  347. try {
  348. const res = await apiCall({ ...params });
  349. if (res.data.needPay) {
  350. location.href = res.data.url;
  351. } else {
  352. this.showToast('无需支付', 'info');
  353. setTimeout(() => {
  354. location.reload();
  355. }, 1000);
  356. }
  357. } catch (err) {
  358. // this.showToast(err.msg, 'error');
  359. }
  360. },
  361. /**
  362. * @description: 贵阳银行包月支付
  363. * @return {*}
  364. */
  365. async gyBankMonthPay() {
  366. try {
  367. const res = await this.$u.api.monthPay({ monthId: this.monthId, jumpUrl: this.jumpUrl });
  368. if (res.code === 200) {
  369. location.href = res?.data?.url;
  370. }
  371. } catch (err) {
  372. this.showToast('无法调起支付', 'error');
  373. }
  374. },
  375. /**
  376. * @description: 显示报错信息
  377. * @param {*} title
  378. * @param {*} type
  379. * @return {*}
  380. */
  381. showToast(title, type = 'error') {
  382. this.$refs.uToast.show({ title, type });
  383. },
  384. /**
  385. * 聚合支付
  386. * */
  387. juhePay() {
  388. this.getWXPayByJava(this.curOrderList, this.deviceNo);
  389. },
  390. /**
  391. * @description: 聚合包月支付
  392. * @return {*}
  393. */
  394. async juheMonthPay() {
  395. const params = { monthId: this.monthId, jumpUrl: this.jumpUrl };
  396. try {
  397. const res = await this.$u.api.monthlyWxPay({ ...params });
  398. if (res.code === 200) {
  399. localStorage.setItem('jumpUrl', this.jumpUrl);
  400. location.href = res.data.qrCodeUrl;
  401. }
  402. } catch (err) {
  403. // this.showToast(`无法调起${this.alipayEnv ? '支付宝' : this.wxEnv ? '微信' : '聚合'}支付!`, type: 'error');
  404. }
  405. },
  406. /**
  407. * 微信支付处理参数
  408. */
  409. wechatPay() {
  410. const params = {
  411. orderList: this.curOrderList,
  412. openid: this.vuex_wxinfo.openId,
  413. deviceNo: this.deviceNo || undefined,
  414. payeeId: this.payeeId || undefined,
  415. payeeName: this.payeeName || undefined,
  416. vehicleNo: this.vehicleNo,
  417. sanPay: this.sanPay
  418. };
  419. if (this.couponPopup.radioCurrent) {
  420. params.couponMemberId = this.couponPopup.radioCurrent;
  421. }
  422. this.handleWxPay.call(this, params);
  423. },
  424. /**
  425. * @description: 微信支付
  426. * @param {*} params
  427. * @return {*}
  428. */
  429. handleWxPay(params) {
  430. const api = this.exportFlag ? this.$u.api.parkingWechatPayApi : this.$u.api.wechatPayApi;
  431. api(params).then((res) => {
  432. if (res.code !== 200) {
  433. return;
  434. }
  435. if (!res.data.needPay) {
  436. this.showToast('无需支付', 'info');
  437. setTimeout(() => {
  438. uni.hideLoading();
  439. location.reload();
  440. }, 1000);
  441. return;
  442. }
  443. $wxPay.weixinPay(res.data.wx).then((r) => {
  444. const messageMap = {
  445. 0: '成功',
  446. 1: '已取消支付',
  447. 2: '支付失败,请检查!'
  448. };
  449. switch (Number(r.code)) {
  450. case 0: // 成功
  451. //#ifdef H5
  452. location.reload();
  453. //#endif
  454. break;
  455. case 1: // 取消
  456. if (this.isCancelCoupon) {
  457. this.cancelCoupon(messageMap[r.code]);
  458. } else {
  459. this.showToast(messageMap[r.code], 'info');
  460. }
  461. break;
  462. case 2: // 支付失败
  463. this.showToast(messageMap[r.code], 'error');
  464. break;
  465. }
  466. });
  467. });
  468. },
  469. /**
  470. * @description: 取消优惠券
  471. * @param {*} msg
  472. * @return {*}
  473. */
  474. async cancelCoupon(msg) {
  475. try {
  476. const { code } = await this.$u.api.updateCouponStatusApi({ orderList: this.curOrderList });
  477. if (code === 200) {
  478. this.showToast(msg, 'info');
  479. location.reload();
  480. }
  481. } catch (error) {}
  482. },
  483. /**
  484. * @description: 微信包月支付
  485. * @return {*}
  486. */
  487. wechatMonthPay() {
  488. this.$u.api.wechatMonthlyPayapi({ monthId: this.monthId, openid: this.vuex_wxinfo.openId }).then((response) => {
  489. if (response.code === 200) {
  490. $wxPay.weixinPay(response.data.wx).then((res) => {
  491. this.handleMonthlyPay.call(this, res);
  492. });
  493. }
  494. });
  495. },
  496. /**
  497. * @description: 微信包月支付响应处理
  498. * @param {*} response
  499. * @return {*}
  500. */
  501. handleMonthlyPay(response) {
  502. const messageMap = {
  503. 0: { title: '成功', jumpUrl: this.jumpUrl },
  504. 1: { title: '已取消支付' },
  505. 2: { title: '支付失败,请检查!', type: 'error' }
  506. };
  507. const message = messageMap[Number(response.code)];
  508. this.showToast(message.title, message.type || 'info');
  509. if (message.jumpUrl) {
  510. location.href = message.jumpUrl;
  511. }
  512. },
  513. /**
  514. * 直接通过后台获取贵阳银行微信支付地址
  515. * @param {Array} list 需要支付的订单组合数组
  516. * @param {Number} deviceNo 设备编号(在停车锁部分需要)
  517. * */
  518. async getWXPayByJava(orderList, deviceNo) {
  519. try {
  520. let params = {
  521. orderList,
  522. openid: this.vuex_wxinfo.openId,
  523. jumpUrl: this.jumpUrl,
  524. deviceNo: deviceNo ? deviceNo : null,
  525. payeeId: this.payeeId,
  526. payeeName: this.payeeName,
  527. pursueType: this.pursueType,
  528. vehicleNo: this.vehicleNo,
  529. sanPay: this.sanPay
  530. };
  531. const api = this.exportFlag ? 'polyPayExportApi' : 'ordinaryWxPay'; // 优化代码
  532. const res = await this.$u.api[api](params);
  533. if (res.code === 200) {
  534. if (res.data.needPay) {
  535. localStorage.setItem('jumpUrl', this.jumpUrl);
  536. location.href = res.data.qrCodeUrl;
  537. } else {
  538. this.showToast('无需支付', 'info');
  539. setTimeout(() => {
  540. location.href = this.jumpUrl;
  541. }, 1000);
  542. }
  543. } else {
  544. uni.hideLoading();
  545. }
  546. } catch (err) {
  547. // this.showToast(`无法调起${this.alipayEnv ? '支付宝' : this.wxEnv ? '微信' : '聚合'}支付!`, 'error');
  548. }
  549. },
  550. /**
  551. * @description: 镇宁微信支付
  552. * @param {*} orderList
  553. * @param {*} deviceNo
  554. * @return {*}
  555. */
  556. async znWechatPay() {
  557. try {
  558. const params = {
  559. orderList: this.curOrderList,
  560. openid: '',
  561. jumpUrl: this.jumpUrl,
  562. deviceNo: this.deviceNo ? this.deviceNo : null,
  563. payeeId: this.payeeId,
  564. payeeName: this.payeeName,
  565. pursueType: this.pursueType
  566. };
  567. const res = await this.$u.api.ordinaryWxPay(params);
  568. if (res.code === 200) {
  569. const { needPay, qrCodeUrl } = res.data;
  570. if (needPay) {
  571. localStorage.setItem('jumpUrl', this.jumpUrl);
  572. location.href = qrCodeUrl;
  573. } else {
  574. this.showToast('无需支付', 'info');
  575. setTimeout(() => {
  576. location.href = this.jumpUrl;
  577. }, 1000);
  578. }
  579. } else {
  580. uni.hideLoading();
  581. }
  582. } catch (err) {
  583. this.showToast('无法调起微信支付!', 'error');
  584. }
  585. },
  586. /**
  587. * @description: 镇宁聚合
  588. * @return {*}
  589. */
  590. async getWXMonthPayByJava() {
  591. const { monthId, jumpUrl } = this;
  592. try {
  593. const res = await this.$u.api.monthlyWxPay({ monthId, jumpUrl });
  594. if (res.code === 200) {
  595. localStorage.setItem('jumpUrl', jumpUrl);
  596. location.href = res.data.qrCodeUrl;
  597. }
  598. } catch (err) {
  599. // this.showToast('无法调起支付!', 'error');
  600. }
  601. },
  602. /**
  603. * 支付弹框关闭触发
  604. * @date 2023-02-17
  605. * @returns {any}
  606. */
  607. modalClose() {
  608. Object.assign(this, {
  609. payWayPop: false,
  610. wxEnv: true,
  611. alipayEnv: true,
  612. radioCurrent: '',
  613. orderMoney: '',
  614. isShowCoupon: false,
  615. isCancelCoupon: false,
  616. couponPopup: {
  617. show: false,
  618. couponList: [],
  619. radioCurrent: '',
  620. background: {
  621. backgroundColor: '#008CFF'
  622. },
  623. currentCoupon: {}
  624. }
  625. });
  626. this.$emit('closePaymentMethod');
  627. },
  628. /**
  629. * 关闭优惠券弹框
  630. * @date 2023-02-17
  631. * @returns {any}
  632. */
  633. customBack() {
  634. this.couponPopup.show = false;
  635. },
  636. /**
  637. * 优惠券单选触发
  638. * @date 2023-02-17
  639. * @param {any} val
  640. * @returns {any}
  641. */
  642. couponRadioChange(val) {
  643. // this.couponPopup.radioCurrent = val.detail.value;
  644. // this.couponPopup.currentCoupon = this.couponPopup.couponList.find((item) => item.id === this.couponPopup.radioCurrent);
  645. },
  646. couponItemClick(item) {
  647. this.couponPopup.radioCurrent = item.id === this.couponPopup.radioCurrent ? '' : item.id;
  648. },
  649. /**
  650. * 优惠券确认
  651. * @date 2023-02-17
  652. * @returns {any}
  653. */
  654. confimCoupon() {
  655. this.couponPopup.currentCoupon = this.couponPopup.radioCurrent
  656. ? this.couponPopup.couponList.find((item) => item.id === this.couponPopup.radioCurrent)
  657. : {};
  658. this.couponPopup.show = false;
  659. },
  660. /**
  661. * 立即支付
  662. * @date 2023-02-17
  663. * @returns {any}
  664. */
  665. async immediatePayment() {
  666. if (this.isIndoor) {
  667. const relationObj = {
  668. weixin: 'wechat',
  669. gzyh: 'quick',
  670. juhe: 'poly'
  671. };
  672. this.indoorPayment(relationObj[this.radioCurrent]);
  673. } else {
  674. const paymentMethods = {
  675. weixin: this.isMonthPay ? this.wechatMonthPay : this.wechatPay,
  676. gzyh: this.isMonthPay ? this.gyBankMonthPay : this.gyBankPay,
  677. juhe: this.isMonthPay ? this.juheMonthPay : this.juhePay,
  678. weixinzn: this.isMonthPay ? this.getWXMonthPayByJava : this.znWechatPay
  679. };
  680. const paymentMethod = paymentMethods[this.radioCurrent];
  681. if (paymentMethod) {
  682. await paymentMethod.call(this);
  683. }
  684. }
  685. },
  686. /**
  687. * @description: 室内支付
  688. * @param {*} payMode
  689. * @return {*}
  690. */
  691. async indoorPayment(payMode) {
  692. const { curOrderList, couponPopup, vuex_wxinfo, jumpUrl } = this;
  693. const params = {
  694. orderList: curOrderList,
  695. payMode,
  696. couponMemberId: couponPopup?.radioCurrent,
  697. openid: vuex_wxinfo?.openId,
  698. sanPay: true,
  699. jumpUrl
  700. };
  701. const { code, data } = await this.$u.api.indoorPaymentApi({ ...params });
  702. if (code === 200) {
  703. if (data?.needPay) {
  704. switch (payMode) {
  705. case 'wechat': // 微信支付
  706. $wxPay.weixinPay(data?.wechat?.wx).then((r) => {
  707. const messageMap = {
  708. 0: '成功',
  709. 1: '已取消支付',
  710. 2: '支付失败,请检查!'
  711. };
  712. switch (Number(r.code)) {
  713. case 0: // 成功
  714. //#ifdef H5
  715. this.jumpUrl ? (location.href = `${this.jumpUrl}&polyOrderId=${data.polyOrderId}`) : location.reload();
  716. //#endif
  717. break;
  718. case 1: // 取消
  719. if (this.isCancelCoupon) {
  720. this.cancelCoupon(messageMap[r.code]);
  721. } else {
  722. this.showToast(messageMap[r.code], 'info');
  723. }
  724. break;
  725. case 2: // 支付失败
  726. this.showToast(messageMap[r.code], 'error');
  727. break;
  728. }
  729. });
  730. break;
  731. case 'quick': // 快捷支付
  732. location.href = data?.quick;
  733. break;
  734. case 'poly':
  735. localStorage.setItem('jumpUrl', this.jumpUrl);
  736. location.href = data?.poly;
  737. break;
  738. }
  739. } else {
  740. this.showToast('无需支付', 'info');
  741. setTimeout(() => {
  742. this.jumpUrl ? (location.href = `${this.jumpUrl}&polyOrderId=${data.polyOrderId}`) : location.reload();
  743. }, 1000);
  744. }
  745. }
  746. },
  747. /**
  748. * 计算剩余时间
  749. * @date 2022-02-17
  750. * @param {any} datetime
  751. * @returns {any}
  752. */
  753. calcValidity(startTime, endTime) {
  754. let endTimeStr = new Date(endTime).valueOf(),
  755. nowTimeStr = new Date(startTime).valueOf() < Date.now() ? Date.now() : new Date(startTime).valueOf(),
  756. remainTimeStr = endTimeStr - nowTimeStr,
  757. day = Math.floor(remainTimeStr / (1000 * 3600 * 24)),
  758. dayOver = remainTimeStr % (1000 * 3600 * 24),
  759. hours = Math.floor(dayOver / (3600 * 1000)),
  760. hourOver = dayOver % (3600 * 1000),
  761. minutes = Math.floor(hourOver / (60 * 1000));
  762. return `${day}天${hours}小时${minutes}分`;
  763. },
  764. getDifference(a, b) {
  765. return a > b ? a - b : 0;
  766. }
  767. }
  768. };
  769. </script>
  770. <style lang="scss" scoped>
  771. @import './choosePayment.scss';
  772. </style>