choosePayment.vue 25 KB

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