pay.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <view class="page">
  3. <view class="top .u-flex-col u-col-center" style="justify-content: center;">
  4. <view class="font">
  5. 实际金额
  6. </view>
  7. <view class="money">
  8. <text>¥</text>
  9. <text style="font-size: 76rpx;">{{money}}</text>
  10. </view>
  11. </view>
  12. <view class="">
  13. <view class="pay1">请选择支付方式</view>
  14. <view class="u-flex u-row-between" style="margin-top: 64rpx;">
  15. <view class="u-flex">
  16. <image style="width: 40rpx;height: 40rpx;" src="/pagesD/static/images/wxpay.png" mode=""></image>
  17. <view class="" style="margin-left: 20rpx;">微信支付</view>
  18. </view>
  19. <view class="">
  20. <u-radio-group v-model="radiovalue1">
  21. <u-radio name="1">
  22. </u-radio>
  23. </u-radio-group>
  24. </view>
  25. </view>
  26. </view>
  27. <view class=""
  28. style="position: fixed;left: 0;bottom: 0;padding: 16rpx 32rpx;width: 750rpx;box-sizing: border-box;">
  29. <view class="pay" style="" @click="tobuy">
  30. 立即支付
  31. </view>
  32. <view class="safe-area-inset-bottom"></view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. import {
  38. pay
  39. } from "@/units/inquire.js"
  40. export default {
  41. data() {
  42. return {
  43. money: 0,
  44. id: '',
  45. radiovalue1: '1'
  46. };
  47. },
  48. onLoad(options) {
  49. this.money = options.money
  50. this.id = options.id
  51. },
  52. methods: {
  53. tobuy() {
  54. uni.showLoading({
  55. mask: true,
  56. title: "请稍后"
  57. })
  58. pay({
  59. id: this.id,
  60. paytype: 'wechat',
  61. apptype: 'miniapp'
  62. }).then(res => {
  63. uni.hideLoading()
  64. if (res.code == 1) {
  65. var that = this
  66. uni.requestPayment({
  67. provider: 'wxpay',
  68. timeStamp: res.data.data.response.timeStamp,
  69. nonceStr: res.data.data.response.nonceStr,
  70. package: res.data.data.response.package,
  71. signType: res.data.data.response.signType,
  72. paySign: res.data.data.response.paySign,
  73. success: function(res) {
  74. console.log('success:' + JSON.stringify(res));
  75. that.$u.toast('支付成功')
  76. setTimeout(() => {
  77. uni.redirectTo({
  78. url: "/pagesD/order-info?id=" + that.id
  79. })
  80. // uni.navigateBack()
  81. })
  82. // this.getdata()
  83. },
  84. fail: function(err) {
  85. console.log('fail:' + JSON.stringify(err));
  86. // setTimeout(() => {
  87. // // uni.navigateTo({
  88. // // url: "/pagesD/order-info?id=" + this.id
  89. // // })
  90. // uni.navigateBack()
  91. // })
  92. }
  93. });
  94. }
  95. })
  96. },
  97. }
  98. }
  99. </script>
  100. <style lang="scss" scoped>
  101. .pay {
  102. height: 88rpx;
  103. background: #0C66C2;
  104. border-radius: 12rpx;
  105. line-height: 88rpx;
  106. text-align: center;
  107. // padding: 22rpx 0;
  108. box-sizing: border-box;
  109. font-size: 32rpx;
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 500;
  112. color: #FFFFFF;
  113. }
  114. .page {
  115. padding: 0 52rpx;
  116. }
  117. .top {
  118. height: 350rpx;
  119. }
  120. .font {
  121. font-size: 32rpx;
  122. font-family: PingFangSC, PingFang SC;
  123. font-weight: 400;
  124. color: #222222;
  125. }
  126. .money {
  127. font-size: 44rpx;
  128. font-family: JDZhengHT, JDZhengHT;
  129. font-weight: 400;
  130. color: #222222;
  131. }
  132. .pay1 {
  133. font-size: 32rpx;
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 400;
  136. color: #222222;
  137. }
  138. </style>