index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="payment" :class="pay_close ? 'on' : ''">
  4. <view class="title acea-row row-center-wrapper">
  5. {{$t(`选择付款方式`)}}<text class="iconfont icon-guanbi" @click='close'></text>
  6. </view>
  7. <u-alert title="积分赠送方式" type = "warning" :description = "description"></u-alert>
  8. <view class="item acea-row row-between-wrapper" v-for="(item,index) in payMode" :key="index"
  9. v-if='item.payStatus' @click="payType(item.number || 0 , item.value,index)">
  10. <view class="left acea-row row-between-wrapper">
  11. <view class="iconfont" :class="item.icon"></view>
  12. <view class="text">
  13. <view class="name">{{item.name}}</view>
  14. <view class="info" v-if="item.value == 'yue'">
  15. {{item.title}} <span class="money">{{$t(`¥`)}}{{ item.number }}</span>
  16. </view>
  17. <view class="info" v-else>{{item.title}}</view>
  18. </view>
  19. </view>
  20. <view class="iconfont" :class="active==index?'icon-xuanzhong11 font-num':'icon-weixuan'"></view>
  21. </view>
  22. <view class="payMoney">{{$t(`支付`)}}<span class="font-color">{{$t(`¥`)}}<span class="money">{{totalPrice}}</span></span></view>
  23. <view class="button bg-color acea-row row-center-wrapper" @click='goPay(number, paytype)'>{{$t(`去付款`)}}</view>
  24. </view>
  25. <view class="mask" @click='close' v-if="pay_close"></view>
  26. <view v-show="false" v-html="formContent"></view>
  27. </view>
  28. </template>
  29. <script>
  30. import {
  31. orderPay
  32. } from '@/api/order.js';
  33. import colors from '@/mixins/color.js';
  34. export default {
  35. props: {
  36. payMode: {
  37. type: Array,
  38. default: function() {
  39. return [];
  40. }
  41. },
  42. pay_close: {
  43. type: Boolean,
  44. default: false,
  45. },
  46. order_id: {
  47. type: String,
  48. default: ''
  49. },
  50. totalPrice: {
  51. type: String,
  52. default: '0'
  53. },
  54. isCall: {
  55. type: Boolean,
  56. default: false
  57. },
  58. friendPay: {
  59. type: Boolean,
  60. default: false
  61. }
  62. },
  63. mixins: [colors],
  64. data() {
  65. return {
  66. description: '下单后,需要确认收货完成订单,才能收到积分.',
  67. formContent: '',
  68. active: 0,
  69. paytype: '',
  70. number: 0
  71. };
  72. },
  73. watch: {
  74. payMode: {
  75. handler(newV, oldValue) {
  76. let newPayList = [];
  77. newV.forEach((item, index) => {
  78. if (item.payStatus) {
  79. item.index = index;
  80. newPayList.push(item)
  81. }
  82. });
  83. this.active = newPayList[0].index;
  84. this.paytype = newPayList[0].value;
  85. this.number = newPayList[0].number || 0;
  86. },
  87. immediate: true,
  88. deep: true
  89. }
  90. },
  91. methods: {
  92. payType(number, paytype, index) {
  93. this.active = index;
  94. this.paytype = paytype;
  95. this.number = number;
  96. this.$emit('changePayType', paytype)
  97. },
  98. close: function() {
  99. this.$emit('onChangeFun', {
  100. action: 'payClose'
  101. });
  102. },
  103. goPay: function(number, paytype) {
  104. if (this.isCall) {
  105. return this.$emit('onChangeFun', {
  106. action: 'payCheck',
  107. value: paytype
  108. });
  109. }
  110. let that = this;
  111. if (!that.order_id) return that.$util.Tips({
  112. title: that.$t(`请选择要支付的订单`)
  113. });
  114. if (paytype == 'yue' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
  115. title: that.$t(`余额不足`)
  116. });
  117. uni.showLoading({
  118. title: that.$t(`支付中`)
  119. });
  120. if (paytype == 'friend' && that.order_id) {
  121. return uni.navigateTo({
  122. url: '/pages/users/payment_on_behalf/index?order_id=' + that.order_id + '&spread=' +
  123. this.$store.state.app.uid,
  124. success: res => {},
  125. fail: () => {},
  126. complete: () => {}
  127. });
  128. }
  129. orderPay({
  130. uni: that.order_id,
  131. paytype: paytype,
  132. type: that.friendPay ? 1 : 0,
  133. // #ifdef MP
  134. 'from': 'routine',
  135. // #endif
  136. // #ifdef H5
  137. 'from': this.$wechat.isWeixin() ? 'weixin' : 'weixinh5',
  138. // #endif
  139. // #ifdef H5
  140. quitUrl: location.port ? location.protocol + '//' + location.hostname + ':' + location
  141. .port +
  142. '/pages/goods/order_details/index?order_id=' + this.order_id : location.protocol +
  143. '//' + location.hostname +
  144. '/pages/goods/order_details/index?order_id=' + this.order_id
  145. // #endif
  146. // #ifdef APP-PLUS
  147. quitUrl: '/pages/goods/order_details/index?order_id=' + this.order_id
  148. // #endif
  149. }).then(res => {
  150. let jsConfig = res.data.result.jsConfig;
  151. switch (paytype) {
  152. case 'weixin':
  153. if (res.data.result === undefined) return that.$util.Tips({
  154. title: that.$t(`缺少支付参数`)
  155. });
  156. // #ifdef MP
  157. let mp_pay_name=''
  158. if(uni.requestOrderPayment){
  159. mp_pay_name='requestOrderPayment'
  160. }else{
  161. mp_pay_name='requestPayment'
  162. }
  163. uni[mp_pay_name]({
  164. timeStamp: jsConfig.timestamp,
  165. nonceStr: jsConfig.nonceStr,
  166. package: jsConfig.package,
  167. signType: jsConfig.signType,
  168. paySign: jsConfig.paySign,
  169. success: function(res) {
  170. uni.hideLoading();
  171. return that.$util.Tips({
  172. title: res.msg,
  173. icon: 'success'
  174. }, () => {
  175. that.$emit('onChangeFun', {
  176. action: 'pay_complete'
  177. });
  178. });
  179. },
  180. fail: function(e) {
  181. uni.hideLoading();
  182. return that.$util.Tips({
  183. title: that.$t(`取消支付`)
  184. }, () => {
  185. that.$emit('onChangeFun', {
  186. action: 'pay_fail'
  187. });
  188. });
  189. },
  190. complete: function(e) {
  191. uni.hideLoading();
  192. if (e.errMsg == 'requestPayment:cancel' || e.errMsg == 'requestOrderPayment:cancel') return that.$util
  193. .Tips({
  194. title: that.$t(`取消支付`)
  195. }, () => {
  196. that.$emit('onChangeFun', {
  197. action: 'pay_fail'
  198. });
  199. });
  200. },
  201. });
  202. // #endif
  203. // #ifdef H5
  204. let data = res.data;
  205. if (data.status == "WECHAT_H5_PAY") {
  206. uni.hideLoading();
  207. location.replace(data.result.jsConfig.mweb_url);
  208. return that.$util.Tips({
  209. title: that.$t(`支付成功`),
  210. icon: 'success'
  211. }, () => {
  212. that.$emit('onChangeFun', {
  213. action: 'pay_complete'
  214. });
  215. });
  216. } else {
  217. that.$wechat.pay(data.result.jsConfig)
  218. .then(() => {
  219. return that.$util.Tips({
  220. title: that.$t(`支付成功`),
  221. icon: 'success'
  222. }, () => {
  223. that.$emit('onChangeFun', {
  224. action: 'pay_complete'
  225. });
  226. });
  227. })
  228. .catch(()=> {
  229. return that.$util.Tips({
  230. title: that.$t(`支付失败`),
  231. }, () => {
  232. that.$emit('onChangeFun', {
  233. action: 'pay_fail'
  234. });
  235. });
  236. });
  237. }
  238. // #endif
  239. // #ifdef APP-PLUS
  240. uni.requestPayment({
  241. provider: 'wxpay',
  242. orderInfo: jsConfig,
  243. success: (e) => {
  244. let url = '/pages/goods/order_pay_status/index?order_id=' + orderId +
  245. '&msg=支付成功';
  246. uni.showToast({
  247. title: that.$t(`支付成功`)
  248. })
  249. setTimeout(res => {
  250. that.$emit('onChangeFun', {
  251. action: 'pay_complete'
  252. });
  253. }, 2000)
  254. },
  255. fail: (e) => {
  256. uni.showModal({
  257. content: that.$t(`支付失败`),
  258. showCancel: false,
  259. success: function(res) {
  260. if (res.confirm) {
  261. that.$emit('onChangeFun', {
  262. action: 'pay_fail'
  263. });
  264. } else if (res.cancel) {}
  265. }
  266. })
  267. },
  268. complete: () => {
  269. uni.hideLoading();
  270. },
  271. });
  272. // #endif
  273. break;
  274. case 'yue':
  275. uni.hideLoading();
  276. return that.$util.Tips({
  277. title: res.msg,
  278. icon: 'success'
  279. }, () => {
  280. that.$emit('onChangeFun', {
  281. action: 'pay_complete'
  282. });
  283. });
  284. break;
  285. case 'offline':
  286. uni.hideLoading();
  287. return that.$util.Tips({
  288. title: res.msg,
  289. icon: 'success'
  290. }, () => {
  291. that.$emit('onChangeFun', {
  292. action: 'pay_complete'
  293. });
  294. });
  295. break;
  296. case 'friend':
  297. uni.hideLoading();
  298. return that.$util.Tips({
  299. title: res.msg,
  300. icon: 'success'
  301. }, () => {
  302. that.$emit('onChangeFun', {
  303. action: 'pay_complete'
  304. });
  305. });
  306. break;
  307. case 'alipay':
  308. uni.hideLoading();
  309. //#ifdef H5
  310. if (this.$wechat.isWeixin()) {
  311. uni.redirectTo({
  312. url: `/pages/users/alipay_invoke/index?id=${res.data.result.order_id}&pay_key=${res.data.result.pay_key}`
  313. });
  314. } else {
  315. uni.hideLoading();
  316. that.formContent = res.data.result.jsConfig;
  317. that.$nextTick(() => {
  318. document.getElementById('alipaysubmit').submit();
  319. });
  320. }
  321. //#endif
  322. // #ifdef MP
  323. uni.navigateTo({
  324. url: `/pages/users/alipay_invoke/index?id=${res.data.result.order_id}&link=${res.data.result.jsConfig.qrCode}`
  325. });
  326. // #endif
  327. // #ifdef APP-PLUS
  328. uni.requestPayment({
  329. provider: 'alipay',
  330. orderInfo: jsConfig,
  331. success: (e) => {
  332. uni.showToast({
  333. title: that.$t(`支付成功`)
  334. })
  335. setTimeout(res => {
  336. that.$emit('onChangeFun', {
  337. action: 'pay_complete'
  338. });
  339. }, 2000)
  340. },
  341. fail: (e) => {
  342. uni.showModal({
  343. content: that.$t(`支付失败`),
  344. showCancel: false,
  345. success: function(res) {
  346. if (res.confirm) {
  347. that.$emit('onChangeFun', {
  348. action: 'pay_fail'
  349. });
  350. } else if (res.cancel) {}
  351. }
  352. })
  353. },
  354. complete: () => {
  355. uni.hideLoading();
  356. },
  357. });
  358. // #endif
  359. break;
  360. }
  361. }).catch(err => {
  362. uni.hideLoading();
  363. return that.$util.Tips({
  364. title: err
  365. }, () => {
  366. that.$emit('onChangeFun', {
  367. action: 'pay_fail'
  368. });
  369. });
  370. })
  371. }
  372. }
  373. }
  374. </script>
  375. <style scoped lang="scss">
  376. .bgcolor {
  377. background-color: var(--view-theme)
  378. }
  379. .payment {
  380. position: fixed;
  381. bottom: 0;
  382. left: 0;
  383. width: 100%;
  384. border-radius: 16rpx 16rpx 0 0;
  385. background-color: #fff;
  386. padding-bottom: 60rpx;
  387. z-index: 999;
  388. transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  389. transform: translate3d(0, 100%, 0);
  390. .payMoney {
  391. font-size: 28rpx;
  392. color: #333333;
  393. text-align: center;
  394. margin-top: 50rpx;
  395. .font-color {
  396. margin-left: 10rpx;
  397. .money {
  398. font-size: 40rpx;
  399. }
  400. }
  401. }
  402. .button {
  403. width: 690rpx;
  404. height: 90rpx;
  405. border-radius: 45rpx;
  406. color: #FFFFFF;
  407. margin: 20rpx auto 0 auto;
  408. }
  409. }
  410. .payment.on {
  411. transform: translate3d(0, 0, 0);
  412. }
  413. .payment .title {
  414. text-align: center;
  415. height: 123rpx;
  416. font-size: 32rpx;
  417. color: #282828;
  418. font-weight: bold;
  419. padding-right: 30rpx;
  420. margin-left: 30rpx;
  421. position: relative;
  422. border-bottom: 1rpx solid #eee;
  423. }
  424. .payment .title .iconfont {
  425. position: absolute;
  426. right: 30rpx;
  427. top: 50%;
  428. transform: translateY(-50%);
  429. font-size: 38rpx;
  430. color: #8a8a8a;
  431. font-weight: normal;
  432. }
  433. .payment .item {
  434. border-bottom: 1rpx solid #eee;
  435. height: 130rpx;
  436. margin-left: 30rpx;
  437. padding-right: 30rpx;
  438. }
  439. .payment .item .left {
  440. width: 610rpx;
  441. }
  442. .payment .item .left .text {
  443. width: 540rpx;
  444. }
  445. .payment .item .left .text .name {
  446. font-size: 32rpx;
  447. color: #282828;
  448. }
  449. .payment .item .left .text .info {
  450. font-size: 24rpx;
  451. color: #999;
  452. }
  453. .payment .item .left .text .info .money {
  454. color: #ff9900;
  455. }
  456. .payment .item .left .iconfont {
  457. font-size: 45rpx;
  458. color: #09bb07;
  459. }
  460. .payment .item .left .iconfont.icon-zhifubao {
  461. color: #00aaea;
  462. }
  463. .payment .item .left .iconfont.icon-yuezhifu {
  464. color: #ff9900;
  465. }
  466. .payment .item .left .iconfont.icon-yuezhifu1 {
  467. color: #eb6623;
  468. }
  469. .payment .item .iconfont {
  470. font-size: 40rpx;
  471. color: #ccc;
  472. }
  473. .icon-haoyoudaizhifu {
  474. color: #F34C3E !important;
  475. }
  476. </style>