pay.js 9.9 KB

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