choosePayment.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  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">
  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">
  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">
  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">
  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">
  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.wxEnv) {
  282. this.radioCurrent = 'weixin';
  283. } else {
  284. this.radioCurrent = 'juhe';
  285. }
  286. // 打开弹出层
  287. this.payWayPop = true;
  288. // 计算订单金额
  289. this.orderMoney = details.payAmount.toFixed(2);
  290. // 如果是单个停车订单,且是路边停车,且不是月卡支付,则显示优惠券
  291. if (numType === 'single' && orderType === 'parking' && !this.isMonthPay && this.wxEnv) {
  292. this.isShowCoupon = true;
  293. this.isCancelCoupon = true;
  294. this.getCouponList(details.id);
  295. }
  296. },
  297. /**
  298. * 获取优惠券列表
  299. * @date 2023-02-17
  300. * @param {any} orderId
  301. * @returns {any}
  302. */
  303. getCouponList(orderId) {
  304. this.$u.api.getCouponByOrderIdApi({ orderId }).then((res) => {
  305. this.couponPopup.couponList = res?.data ?? [];
  306. });
  307. },
  308. /**
  309. * 选中支付类型
  310. * @date 2023-02-17
  311. * @param {any} {detail}
  312. * @returns {any}
  313. */
  314. payRadioChange({ detail }) {
  315. this.radioCurrent = detail.value;
  316. },
  317. /**
  318. * 选中优惠券
  319. * @date 2023-02-17
  320. * @returns {any}
  321. */
  322. chooseCoupon() {
  323. this.couponPopup.show = true;
  324. },
  325. /**
  326. * 贵阳银行支付
  327. * @param {Array} orderList 需要支付的订单号组成的数组
  328. * @param {String} deviceNo 设备编号(只有车位锁部分有)
  329. * */
  330. async gyBankPay() {
  331. const params = {
  332. orderList: this.curOrderList,
  333. deviceNo: this.deviceNo,
  334. jumpUrl: this.jumpUrl,
  335. payeeId: this.payeeId,
  336. payeeName: this.payeeName,
  337. pursueType: this.pursueType,
  338. vehicleNo: this.vehicleNo,
  339. sanPay: this.sanPay
  340. };
  341. const apiCall = this.exportFlag ? this.$u.api.quickPayExportApi : this.$u.api.payGzbank;
  342. try {
  343. const res = await apiCall({ ...params });
  344. if (res.data.needPay) {
  345. location.href = res.data.url;
  346. } else {
  347. this.showToast('无需支付', 'info');
  348. setTimeout(() => {
  349. location.reload();
  350. }, 1000);
  351. }
  352. } catch (err) {
  353. // this.showToast(err.msg, 'error');
  354. }
  355. },
  356. /**
  357. * @description: 贵阳银行包月支付
  358. * @return {*}
  359. */
  360. async gyBankMonthPay() {
  361. try {
  362. const res = await this.$u.api.monthPay({ monthId: this.monthId, jumpUrl: this.jumpUrl });
  363. if (res.code === 200) {
  364. location.href = res?.data?.url;
  365. }
  366. } catch (err) {
  367. this.showToast('无法调起支付', 'error');
  368. }
  369. },
  370. /**
  371. * @description: 显示报错信息
  372. * @param {*} title
  373. * @param {*} type
  374. * @return {*}
  375. */
  376. showToast(title, type = 'error') {
  377. this.$refs.uToast.show({ title, type });
  378. },
  379. /**
  380. * 聚合支付
  381. * */
  382. juhePay() {
  383. this.getWXPayByJava(this.curOrderList, this.deviceNo);
  384. },
  385. /**
  386. * @description: 聚合包月支付
  387. * @return {*}
  388. */
  389. async juheMonthPay() {
  390. const params = { monthId: this.monthId, jumpUrl: this.jumpUrl };
  391. try {
  392. const res = await this.$u.api.monthlyWxPay({ ...params });
  393. if (res.code === 200) {
  394. ocalStorage.setItem('jumpUrl', this.jumpUrl);
  395. location.href = res.data.qrCodeUrl;
  396. }
  397. } catch (err) {
  398. // this.showToast(`无法调起${this.alipayEnv ? '支付宝' : this.wxEnv ? '微信' : '聚合'}支付!`, type: 'error');
  399. }
  400. },
  401. /**
  402. * 微信支付处理参数
  403. */
  404. wechatPay() {
  405. const params = {
  406. orderList: this.curOrderList,
  407. openid: this.vuex_wxinfo.openId,
  408. deviceNo: this.deviceNo || undefined,
  409. payeeId: this.payeeId || undefined,
  410. payeeName: this.payeeName || undefined,
  411. vehicleNo: this.vehicleNo,
  412. sanPay: this.sanPay
  413. };
  414. if (this.couponPopup.radioCurrent) {
  415. params.couponMemberId = this.couponPopup.radioCurrent;
  416. }
  417. this.handleWxPay.call(this, params);
  418. },
  419. /**
  420. * @description: 微信支付
  421. * @param {*} params
  422. * @return {*}
  423. */
  424. handleWxPay(params) {
  425. const api = this.exportFlag ? this.$u.api.parkingWechatPayApi : this.$u.api.wechatPayApi;
  426. api(params).then((res) => {
  427. if (res.code !== 200) {
  428. return;
  429. }
  430. if (!res.data.needPay) {
  431. this.showToast('无需支付', 'info');
  432. setTimeout(() => {
  433. uni.hideLoading();
  434. location.reload();
  435. }, 1000);
  436. return;
  437. }
  438. $wxPay.weixinPay(res.data.wx).then((r) => {
  439. const messageMap = {
  440. 0: '成功',
  441. 1: '已取消支付',
  442. 2: '支付失败,请检查!'
  443. };
  444. switch (Number(r.code)) {
  445. case 0: // 成功
  446. //#ifdef H5
  447. location.reload();
  448. //#endif
  449. break;
  450. case 1: // 取消
  451. if (this.isCancelCoupon) {
  452. this.cancelCoupon(messageMap[r.code]);
  453. } else {
  454. this.showToast(messageMap[r.code], 'info');
  455. }
  456. break;
  457. case 2: // 支付失败
  458. this.showToast(messageMap[r.code], 'error');
  459. break;
  460. }
  461. });
  462. });
  463. },
  464. /**
  465. * @description: 取消优惠券
  466. * @param {*} msg
  467. * @return {*}
  468. */
  469. async cancelCoupon(msg) {
  470. try {
  471. const { code } = await this.$u.api.updateCouponStatusApi({ orderList: this.curOrderList });
  472. if (code === 200) {
  473. this.showToast(msg, 'info');
  474. location.reload();
  475. }
  476. } catch (error) {}
  477. },
  478. /**
  479. * @description: 微信包月支付
  480. * @return {*}
  481. */
  482. wechatMonthPay() {
  483. this.$u.api.wechatMonthlyPayapi({ monthId: this.monthId, openid: this.vuex_wxinfo.openId }).then((response) => {
  484. if (response.code === 200) {
  485. $wxPay.weixinPay(response.data.wx).then((res) => {
  486. this.handleMonthlyPay.call(this, res);
  487. });
  488. }
  489. });
  490. },
  491. /**
  492. * @description: 微信包月支付响应处理
  493. * @param {*} response
  494. * @return {*}
  495. */
  496. handleMonthlyPay(response) {
  497. const messageMap = {
  498. 0: { title: '成功', jumpUrl: this.jumpUrl },
  499. 1: { title: '已取消支付' },
  500. 2: { title: '支付失败,请检查!', type: 'error' }
  501. };
  502. const message = messageMap[Number(response.code)];
  503. this.showToast(message.title, message.type || 'info');
  504. if (message.jumpUrl) {
  505. location.href = message.jumpUrl;
  506. }
  507. },
  508. /**
  509. * 直接通过后台获取贵阳银行微信支付地址
  510. * @param {Array} list 需要支付的订单组合数组
  511. * @param {Number} deviceNo 设备编号(在停车锁部分需要)
  512. * */
  513. async getWXPayByJava(orderList, deviceNo) {
  514. try {
  515. let params = {
  516. orderList,
  517. openid: this.vuex_wxinfo.openId,
  518. jumpUrl: this.jumpUrl,
  519. deviceNo: deviceNo ? deviceNo : null,
  520. payeeId: this.payeeId,
  521. payeeName: this.payeeName,
  522. pursueType: this.pursueType,
  523. vehicleNo: this.vehicleNo,
  524. sanPay: this.sanPay
  525. };
  526. const api = this.exportFlag ? 'polyPayExportApi' : 'ordinaryWxPay'; // 优化代码
  527. const res = await this.$u.api[api](params);
  528. if (res.code === 200) {
  529. if (res.data.needPay) {
  530. localStorage.setItem('jumpUrl', this.jumpUrl);
  531. location.href = res.data.qrCodeUrl;
  532. } else {
  533. this.showToast('无需支付', 'info');
  534. setTimeout(() => {
  535. location.href = this.jumpUrl;
  536. }, 1000);
  537. }
  538. } else {
  539. uni.hideLoading();
  540. }
  541. } catch (err) {
  542. // this.showToast(`无法调起${this.alipayEnv ? '支付宝' : this.wxEnv ? '微信' : '聚合'}支付!`, 'error');
  543. }
  544. },
  545. /**
  546. * @description: 镇宁微信支付
  547. * @param {*} orderList
  548. * @param {*} deviceNo
  549. * @return {*}
  550. */
  551. async znWechatPay() {
  552. try {
  553. const params = {
  554. orderList: this.curOrderList,
  555. openid: '',
  556. jumpUrl: this.jumpUrl,
  557. deviceNo: this.deviceNo ? this.deviceNo : null,
  558. payeeId: this.payeeId,
  559. payeeName: this.payeeName,
  560. pursueType: this.pursueType
  561. };
  562. const res = await this.$u.api.ordinaryWxPay(params);
  563. if (res.code === 200) {
  564. const { needPay, qrCodeUrl } = res.data;
  565. if (needPay) {
  566. localStorage.setItem('jumpUrl', this.jumpUrl);
  567. location.href = qrCodeUrl;
  568. } else {
  569. this.showToast('无需支付', 'info');
  570. setTimeout(() => {
  571. location.href = this.jumpUrl;
  572. }, 1000);
  573. }
  574. } else {
  575. uni.hideLoading();
  576. }
  577. } catch (err) {
  578. this.showToast('无法调起微信支付!', 'error');
  579. }
  580. },
  581. /**
  582. * @description: 镇宁聚合
  583. * @return {*}
  584. */
  585. async getWXMonthPayByJava() {
  586. const { monthId, jumpUrl } = this;
  587. try {
  588. const res = await this.$u.api.monthlyWxPay({ monthId, jumpUrl });
  589. if (res.code === 200) {
  590. localStorage.setItem('jumpUrl', jumpUrl);
  591. location.href = res.data.qrCodeUrl;
  592. }
  593. } catch (err) {
  594. // this.showToast('无法调起支付!', 'error');
  595. }
  596. },
  597. /**
  598. * 支付弹框关闭触发
  599. * @date 2023-02-17
  600. * @returns {any}
  601. */
  602. modalClose() {
  603. Object.assign(this, {
  604. payWayPop: false,
  605. wxEnv: true,
  606. alipayEnv: true,
  607. radioCurrent: '',
  608. orderMoney: '',
  609. isShowCoupon: false,
  610. isCancelCoupon: false,
  611. couponPopup: {
  612. show: false,
  613. couponList: [],
  614. radioCurrent: '',
  615. background: {
  616. backgroundColor: '#008CFF'
  617. },
  618. currentCoupon: {}
  619. }
  620. });
  621. this.$emit('closePaymentMethod');
  622. },
  623. /**
  624. * 关闭优惠券弹框
  625. * @date 2023-02-17
  626. * @returns {any}
  627. */
  628. customBack() {
  629. this.couponPopup.show = false;
  630. },
  631. /**
  632. * 优惠券单选触发
  633. * @date 2023-02-17
  634. * @param {any} val
  635. * @returns {any}
  636. */
  637. couponRadioChange(val) {
  638. // this.couponPopup.radioCurrent = val.detail.value;
  639. // this.couponPopup.currentCoupon = this.couponPopup.couponList.find((item) => item.id === this.couponPopup.radioCurrent);
  640. },
  641. couponItemClick(item) {
  642. this.couponPopup.radioCurrent = item.id === this.couponPopup.radioCurrent ? '' : item.id;
  643. },
  644. /**
  645. * 优惠券确认
  646. * @date 2023-02-17
  647. * @returns {any}
  648. */
  649. confimCoupon() {
  650. this.couponPopup.currentCoupon = this.couponPopup.radioCurrent
  651. ? this.couponPopup.couponList.find((item) => item.id === this.couponPopup.radioCurrent)
  652. : {};
  653. this.couponPopup.show = false;
  654. },
  655. /**
  656. * 立即支付
  657. * @date 2023-02-17
  658. * @returns {any}
  659. */
  660. async immediatePayment() {
  661. if (this.isIndoor) {
  662. const relationObj = {
  663. weixin: 'wechat',
  664. gzyh: 'quick',
  665. juhe: 'poly'
  666. };
  667. this.indoorPayment(relationObj[this.radioCurrent]);
  668. } else {
  669. const paymentMethods = {
  670. weixin: this.isMonthPay ? this.wechatMonthPay : this.wechatPay,
  671. gzyh: this.isMonthPay ? this.gyBankMonthPay : this.gyBankPay,
  672. juhe: this.isMonthPay ? this.juheMonthPay : this.juhePay,
  673. weixinzn: this.isMonthPay ? this.getWXMonthPayByJava : this.znWechatPay
  674. };
  675. const paymentMethod = paymentMethods[this.radioCurrent];
  676. if (paymentMethod) {
  677. await paymentMethod.call(this);
  678. }
  679. }
  680. },
  681. /**
  682. * @description: 室内支付
  683. * @param {*} payMode
  684. * @return {*}
  685. */
  686. async indoorPayment(payMode) {
  687. const { curOrderList, couponPopup, vuex_wxinfo, jumpUrl } = this;
  688. const params = {
  689. orderList: curOrderList,
  690. payMode,
  691. couponMemberId: couponPopup?.radioCurrent,
  692. openid: vuex_wxinfo?.openId,
  693. sanPay: true,
  694. jumpUrl
  695. };
  696. const { code, data } = await this.$u.api.indoorPaymentApi({ ...params });
  697. if (code === 200) {
  698. if (data?.needPay) {
  699. switch (payMode) {
  700. case 'wechat': // 微信支付
  701. $wxPay.weixinPay(data?.wechat?.wx).then((r) => {
  702. const messageMap = {
  703. 0: '成功',
  704. 1: '已取消支付',
  705. 2: '支付失败,请检查!'
  706. };
  707. switch (Number(r.code)) {
  708. case 0: // 成功
  709. //#ifdef H5
  710. this.jumpUrl ? (location.href = `${this.jumpUrl}&polyOrderId=${data.polyOrderId}`) : location.reload();
  711. //#endif
  712. break;
  713. case 1: // 取消
  714. if (this.isCancelCoupon) {
  715. this.cancelCoupon(messageMap[r.code]);
  716. } else {
  717. this.showToast(messageMap[r.code], 'info');
  718. }
  719. break;
  720. case 2: // 支付失败
  721. this.showToast(messageMap[r.code], 'error');
  722. break;
  723. }
  724. });
  725. break;
  726. case 'quick': // 快捷支付
  727. location.href = data?.quick?.url;
  728. break;
  729. case 'poly':
  730. localStorage.setItem('jumpUrl', this.jumpUrl);
  731. location.href = data?.poly?.qrCodeUrl;
  732. break;
  733. }
  734. } else {
  735. this.showToast('无需支付', 'info');
  736. setTimeout(() => {
  737. this.jumpUrl ? (location.href = `${this.jumpUrl}&polyOrderId=${data.polyOrderId}`) : location.reload();
  738. }, 1000);
  739. }
  740. }
  741. },
  742. /**
  743. * 计算剩余时间
  744. * @date 2022-02-17
  745. * @param {any} datetime
  746. * @returns {any}
  747. */
  748. calcValidity(startTime, endTime) {
  749. let endTimeStr = new Date(endTime).valueOf(),
  750. nowTimeStr = new Date(startTime).valueOf() < Date.now() ? Date.now() : new Date(startTime).valueOf(),
  751. remainTimeStr = endTimeStr - nowTimeStr,
  752. day = Math.floor(remainTimeStr / (1000 * 3600 * 24)),
  753. dayOver = remainTimeStr % (1000 * 3600 * 24),
  754. hours = Math.floor(dayOver / (3600 * 1000)),
  755. hourOver = dayOver % (3600 * 1000),
  756. minutes = Math.floor(hourOver / (60 * 1000));
  757. return `${day}天${hours}小时${minutes}分`;
  758. },
  759. getDifference(a, b) {
  760. return a > b ? a - b : 0;
  761. }
  762. }
  763. };
  764. </script>
  765. <style lang="scss" scoped>
  766. @import './choosePayment.scss';
  767. </style>