pay.js 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. import sheep from '@/sheep';
  2. // #ifdef H5
  3. import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
  4. // #endif
  5. import { getRootUrl } from '@/sheep/helper';
  6. import PayOrderApi from '@/sheep/api/pay/order';
  7. /**
  8. * 支付
  9. *
  10. * @param {String} payment = ['wechat','alipay','wallet','mock'] - 支付方式
  11. * @param {String} orderType = ['goods','recharge','groupon'] - 订单类型
  12. * @param {String} id - 订单号
  13. */
  14. export default class SheepPay {
  15. constructor(payment, orderType, id) {
  16. this.payment = payment;
  17. this.id = id;
  18. this.orderType = orderType;
  19. this.payAction();
  20. }
  21. payAction() {
  22. const payAction = {
  23. WechatOfficialAccount: {
  24. wechat: () => {
  25. this.wechatOfficialAccountPay();
  26. },
  27. alipay: () => {
  28. this.redirectPay(); // 现在公众号可以直接跳转支付宝页面
  29. },
  30. wallet: () => {
  31. this.walletPay();
  32. },
  33. mock: () => {
  34. this.mockPay();
  35. }
  36. },
  37. WechatMiniProgram: {
  38. wechat: () => {
  39. this.wechatMiniProgramPay();
  40. },
  41. alipay: () => {
  42. this.copyPayLink();
  43. },
  44. wallet: () => {
  45. this.walletPay();
  46. },
  47. mock: () => {
  48. this.mockPay();
  49. }
  50. },
  51. App: {
  52. wechat: () => {
  53. this.wechatAppPay();
  54. },
  55. alipay: () => {
  56. this.alipay();
  57. },
  58. wallet: () => {
  59. this.walletPay();
  60. },
  61. mock: () => {
  62. this.mockPay();
  63. }
  64. },
  65. H5: {
  66. wechat: () => {
  67. this.wechatWapPay();
  68. },
  69. alipay: () => {
  70. this.redirectPay();
  71. },
  72. wallet: () => {
  73. this.walletPay();
  74. },
  75. mock: () => {
  76. this.mockPay();
  77. }
  78. },
  79. };
  80. return payAction[sheep.$platform.name][this.payment]();
  81. }
  82. // 预支付
  83. prepay(channel) {
  84. return new Promise(async (resolve, reject) => {
  85. let data = {
  86. id: this.id,
  87. channelCode: channel,
  88. channelExtras: {}
  89. };
  90. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid
  91. if (['wx_pub', 'wx_lite'].includes(channel)) {
  92. const openid = await sheep.$platform.useProvider('wechat').getOpenid();
  93. // 如果获取不到 openid,微信无法发起支付,此时需要引导
  94. if (!openid) {
  95. this.bindWeixin();
  96. return;
  97. }
  98. data.channelExtras.openid = openid;
  99. }
  100. // 发起预支付 API 调用
  101. PayOrderApi.submitOrder(data).then((res) => {
  102. // 成功时
  103. res.code === 0 && resolve(res);
  104. // 失败时
  105. if (res.code !== 0 && res.msg.indexOf('无效的openid') >= 0) {
  106. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid 不正确的情况
  107. if (res.msg.indexOf('无效的openid') >= 0 // 获取的 openid 不正确时,或者随便输入了个 openid
  108. || res.msg.indexOf('下单账号与支付账号不一致') >= 0) { // https://developers.weixin.qq.com/community/develop/doc/00008c53c347804beec82aed051c00
  109. this.bindWeixin();
  110. }
  111. }
  112. });
  113. });
  114. }
  115. // #ifdef H5
  116. // 微信公众号 JSSDK 支付
  117. async wechatOfficialAccountPay() {
  118. let { code, data } = await this.prepay('wx_pub');
  119. if (code !== 0) {
  120. return;
  121. }
  122. const payConfig = JSON.parse(data.displayContent);
  123. $wxsdk.wxpay(payConfig, {
  124. success: () => {
  125. this.payResult('success');
  126. },
  127. cancel: () => {
  128. sheep.$helper.toast('支付已手动取消');
  129. },
  130. fail: (error) => {
  131. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  132. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  133. return
  134. }
  135. this.payResult('fail');
  136. },
  137. });
  138. }
  139. // 浏览器微信 H5 支付 TODO 非繁人:待接入
  140. async wechatWapPay() {
  141. const { error, data } = await this.prepay();
  142. if (error === 0) {
  143. const redirect_url = `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  144. location.href = `${data.pay_data.h5_url}&redirect_url=${encodeURIComponent(redirect_url)}`;
  145. }
  146. }
  147. // 支付链接 TODO 非繁人:待接入
  148. async redirectPay() {
  149. let { error, data } = await this.prepay();
  150. if (error === 0) {
  151. const redirect_url = `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  152. location.href = data.pay_data + encodeURIComponent(redirect_url);
  153. }
  154. }
  155. // #endif
  156. // 微信小程序支付
  157. async wechatMiniProgramPay() {
  158. // let that = this;
  159. let { code, data } = await this.prepay('wx_lite');
  160. if (code !== 0) {
  161. return;
  162. }
  163. // 调用微信小程序支付
  164. const payConfig = JSON.parse(data.displayContent);
  165. uni.requestPayment({
  166. provider: 'wxpay',
  167. timeStamp: payConfig.timeStamp,
  168. nonceStr: payConfig.nonceStr,
  169. package: payConfig.packageValue,
  170. signType: payConfig.signType,
  171. paySign: payConfig.paySign,
  172. success: (res) => {
  173. this.payResult('success');
  174. },
  175. fail: (err) => {
  176. if (err.errMsg === 'requestPayment:fail cancel') {
  177. sheep.$helper.toast('支付已手动取消');
  178. } else {
  179. this.payResult('fail');
  180. }
  181. },
  182. });
  183. }
  184. // 余额支付
  185. async walletPay() {
  186. const { code } = await this.prepay('wallet');
  187. code === 0 && this.payResult('success');
  188. }
  189. // 模拟支付
  190. async mockPay() {
  191. const { code } = await this.prepay('mock');
  192. code === 0 && this.payResult('success');
  193. }
  194. // 支付宝复制链接支付 TODO 非繁人:待接入
  195. async copyPayLink() {
  196. let that = this;
  197. let { error, data } = await this.prepay();
  198. if (error === 0) {
  199. // 引入showModal 点击确认 复制链接;
  200. uni.showModal({
  201. title: '支付宝支付',
  202. content: '复制链接到外部浏览器',
  203. confirmText: '复制链接',
  204. success: (res) => {
  205. if (res.confirm) {
  206. sheep.$helper.copyText(data.pay_data);
  207. }
  208. },
  209. });
  210. }
  211. }
  212. // 支付宝支付 TODO 非繁人:待接入
  213. async alipay() {
  214. let that = this;
  215. const { error, data } = await this.prepay();
  216. if (error === 0) {
  217. uni.requestPayment({
  218. provider: 'alipay',
  219. orderInfo: data.pay_data, //支付宝订单数据
  220. success: (res) => {
  221. that.payResult('success');
  222. },
  223. fail: (err) => {
  224. if (err.errMsg === 'requestPayment:fail [paymentAlipay:62001]user cancel') {
  225. sheep.$helper.toast('支付已手动取消');
  226. } else {
  227. that.payResult('fail');
  228. }
  229. },
  230. });
  231. }
  232. }
  233. // 微信支付 TODO 非繁人:待接入
  234. async wechatAppPay() {
  235. let that = this;
  236. let { error, data } = await this.prepay();
  237. if (error === 0) {
  238. uni.requestPayment({
  239. provider: 'wxpay',
  240. orderInfo: data.pay_data, //微信订单数据(官方说是string。实测为object)
  241. success: (res) => {
  242. that.payResult('success');
  243. },
  244. fail: (err) => {
  245. err.errMsg !== 'requestPayment:fail cancel' && that.payResult('fail');
  246. },
  247. });
  248. }
  249. }
  250. // 支付结果跳转,success:成功,fail:失败
  251. payResult(resultType) {
  252. sheep.$router.redirect('/pages/pay/result', {
  253. id: this.id,
  254. orderType: this.orderType,
  255. payState: resultType
  256. });
  257. }
  258. // 引导绑定微信
  259. bindWeixin() {
  260. uni.showModal({
  261. title: '微信支付',
  262. content: '请先绑定微信再使用微信支付',
  263. success: function (res) {
  264. if (res.confirm) {
  265. sheep.$platform.useProvider('wechat').bind();
  266. }
  267. },
  268. });
  269. }
  270. }
  271. export function getPayMethods(channels) {
  272. const payMethods = [
  273. {
  274. icon: '/static/img/shop/pay/wechat.png',
  275. title: '微信支付',
  276. value: 'wechat',
  277. disabled: true,
  278. },
  279. {
  280. icon: '/static/img/shop/pay/alipay.png',
  281. title: '支付宝支付',
  282. value: 'alipay',
  283. disabled: true,
  284. },
  285. {
  286. icon: '/static/img/shop/pay/wallet.png',
  287. title: '余额支付',
  288. value: 'wallet',
  289. disabled: true,
  290. },
  291. {
  292. icon: '/static/img/shop/pay/apple.png',
  293. title: 'Apple Pay',
  294. value: 'apple',
  295. disabled: true,
  296. },
  297. {
  298. icon: '/static/img/shop/pay/wallet.png',
  299. title: '模拟支付',
  300. value: 'mock',
  301. disabled: true,
  302. }
  303. ];
  304. const platform = sheep.$platform.name
  305. // 1. 处理【微信支付】
  306. const wechatMethod = payMethods[0];
  307. if ((platform === 'WechatOfficialAccount' && channels.includes('wx_pub'))
  308. || (platform === 'WechatMiniProgram' && channels.includes('wx_lite'))
  309. || (platform === 'App' && channels.includes('wx_app'))) {
  310. wechatMethod.disabled = false;
  311. }
  312. wechatMethod.disabled = false; // TODO 非繁人:临时测试
  313. // 2. 处理【支付宝支付】
  314. const alipayMethod = payMethods[1];
  315. if ((platform === 'WechatOfficialAccount' && channels.includes('alipay_wap'))
  316. || platform === 'WechatMiniProgram' && channels.includes('alipay_wap')
  317. || platform === 'App' && channels.includes('alipay_app')) {
  318. alipayMethod.disabled = false;
  319. }
  320. // 3. 处理【余额支付】
  321. const walletMethod = payMethods[2];
  322. if (channels.includes('wallet')) {
  323. walletMethod.disabled = false;
  324. }
  325. // 4. 处理【苹果支付】TODO 非繁人:未来接入
  326. // 5. 处理【模拟支付】
  327. const mockMethod = payMethods[4];
  328. if (channels.includes('mock')) {
  329. mockMethod.disabled = false;
  330. }
  331. return payMethods;
  332. }