index.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. import $http from '@/shopro/request/index'
  2. // #ifdef H5
  3. import wxsdk from '@/shopro/wechat/sdk'
  4. // #endif
  5. import wechat from '@/shopro/wechat/wechat'
  6. import {
  7. router as $Router
  8. } from '@/shopro/router/index.js'
  9. import store from '@/shopro/store';
  10. import $platform from '@/shopro/platform';
  11. /**
  12. * 支付
  13. *
  14. * @param {String} payment = ['wechat','alipay','wallet'] - 支付方式
  15. * @param {Object} order = {} - 订单详情
  16. * @param {String} orderType = ['goods','recharge'] - 订单类型
  17. */
  18. export default class ShoproPay {
  19. // wxOfficialAccount wxMiniProgram App H5
  20. // wechat 公众号JSSDK支付 小程序支付 微信开放平台支付 H5网页支付
  21. // alipay 复制网址 复制网址 支付宝开放平台支付 直接跳转链接
  22. // wallet v v v v
  23. constructor(payment, order, orderType) {
  24. this.payment = payment;
  25. this.order = order;
  26. this.orderType = orderType;
  27. this.platform = $platform.get();
  28. let payMehod = this.getPayMethod();
  29. payMehod();
  30. }
  31. getPayMethod() {
  32. var payMethod = {
  33. 'wxOfficialAccount': {
  34. 'wechat': () => {
  35. this.wxOfficialAccountPay()
  36. },
  37. 'alipay': () => {
  38. this.copyPayLink()
  39. },
  40. 'wallet': () => {
  41. this.walletPay()
  42. }
  43. },
  44. 'wxMiniProgram': {
  45. 'wechat': () => {
  46. this.wxMiniProgramPay()
  47. },
  48. 'alipay': () => {
  49. this.copyPayLink()
  50. },
  51. 'wallet': () => {
  52. this.walletPay()
  53. }
  54. },
  55. 'App': {
  56. 'wechat': () => {
  57. this.wechatPay()
  58. },
  59. 'alipay': () => {
  60. this.aliPay()
  61. },
  62. 'wallet': () => {
  63. this.walletPay()
  64. },
  65. },
  66. 'H5': {
  67. 'wechat': () => {
  68. this.wechatWapPay()
  69. },
  70. 'alipay': () => {
  71. this.goToPayLink()
  72. },
  73. 'wallet': () => {
  74. this.walletPay()
  75. },
  76. },
  77. }
  78. return payMethod[this.platform][this.payment];
  79. }
  80. // 预支付
  81. prepay() {
  82. let that = this;
  83. return new Promise((resolve, reject) => {
  84. let that = this;
  85. let params = {
  86. order_sn: that.order.order_sn,
  87. payment: that.payment
  88. }
  89. if (uni.getStorageSync('openid')) {
  90. params.openid = uni.getStorageSync('openid');
  91. }
  92. $http('money.prepay', params, '支付中').then(res => {
  93. if (res.code === 1) {
  94. res.data === 'no_openid' ?
  95. uni.showModal({
  96. title: '微信支付',
  97. content: '请先绑定微信再使用微信支付',
  98. success: function(res) {
  99. if (res.confirm) {
  100. wechat.bind();
  101. }
  102. },
  103. }) :
  104. resolve(res);
  105. }
  106. })
  107. });
  108. }
  109. // 微信H5支付
  110. async wxOfficialAccountPay() {
  111. let that = this;
  112. let result = await this.prepay();
  113. wxsdk.wxpay(result.data.pay_data, (res) => {
  114. res.errMsg == "chooseWXPay:ok" ? that.payResult('success') : that.payResult('fail')
  115. });
  116. }
  117. //浏览器微信支付
  118. async wechatWapPay() {
  119. let that = this;
  120. let result = await this.prepay();
  121. if (result.code === 1) {
  122. var url = result.data.pay_data.match(/url\=\'(\S*)\'/);
  123. let reg = new RegExp('&', 'g') //g代表全部
  124. let newUrl = url[1].replace(reg, '&');
  125. let domain = store.getters.initShop.domain; //域名需要https
  126. let params = encodeURIComponent(
  127. `${domain}pages/order/payment/result?orderId=${that.order.id}&type=${that.payment}&orderType=${that.orderType}`
  128. )
  129. window.location.href = newUrl + '&redirect_url=' + params;
  130. }
  131. }
  132. // 微信小程序支付
  133. async wxMiniProgramPay() {
  134. let that = this;
  135. let result = await this.prepay();
  136. uni.requestPayment({
  137. provider: 'wxpay',
  138. ...result.data.pay_data,
  139. success: res => {
  140. that.payResult('success')
  141. },
  142. fail: err => {
  143. console.log('支付取消或者失败:', err);
  144. err.errMsg !== "requestPayment:fail cancel" && that.payResult('fail')
  145. }
  146. });
  147. }
  148. // 余额支付
  149. async walletPay() {
  150. let that = this;
  151. let result = await this.prepay();
  152. result.code === 1 && that.payResult('success')
  153. }
  154. // 支付宝复制链接支付
  155. async copyPayLink() {
  156. let that = this;
  157. let result = await this.prepay();
  158. if (result.code === 1) {
  159. //引入showModal 点击确认 复制链接;
  160. uni.showModal({
  161. title: '支付宝支付',
  162. content: '复制链接到外部浏览器',
  163. confirmText: '复制链接',
  164. success: (res) => {
  165. if (res.confirm) {
  166. uni.setClipboardData({
  167. data: result.data.pay_data,
  168. success: function(data) {
  169. that.$u.toast('已复制到剪切板');
  170. }
  171. });
  172. }
  173. }
  174. })
  175. }
  176. }
  177. // 支付链接
  178. async goToPayLink() {
  179. let that = this;
  180. let result = await this.prepay();
  181. if (result.code === 1) {
  182. window.location = result.data.pay_data;
  183. }
  184. }
  185. // 支付宝支付
  186. async aliPay() {
  187. let that = this;
  188. let result = await this.prepay();
  189. if (result.code === 1) {
  190. uni.requestPayment({
  191. provider: 'alipay',
  192. orderInfo: result.data.pay_data, //支付宝订单数据
  193. success: res => {
  194. that.payResult('success')
  195. },
  196. fail: err => {
  197. console.log('支付取消或者失败:', err);
  198. err.errMsg !== "requestPayment:fail cancel" && that.payResult('fail')
  199. }
  200. });
  201. }
  202. }
  203. // 微信支付
  204. async wechatPay() {
  205. let that = this;
  206. let result = await this.prepay();
  207. if (result.code === 1) {
  208. uni.requestPayment({
  209. provider: 'wxpay',
  210. orderInfo: JSON.parse(result.data.pay_data), //微信订单数据(官方说是string。实测为object)
  211. success: res => {
  212. that.payResult('success')
  213. },
  214. fail: err => {
  215. err.errMsg !== "requestPayment:fail cancel" && that.payResult('fail')
  216. console.log('支付取消或者失败:', err);
  217. }
  218. });
  219. }
  220. }
  221. // 支付结果跳转,success:成功,fail:失败
  222. payResult(resultType) {
  223. const that = this;
  224. $Router.replace({
  225. path: '/pages/order/payment/result',
  226. query: {
  227. orderId: that.order.id,
  228. type: that.payment, //重新支付的时候使用
  229. payState: resultType,
  230. orderType: that.orderType
  231. }
  232. });
  233. }
  234. }