pay.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  1. import sheep from '@/sheep';
  2. // #ifdef H5
  3. import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
  4. // #endif
  5. import {
  6. getRootUrl
  7. } from '@/sheep/helper';
  8. import PayOrderApi from '@/sheep/api/pay/order';
  9. /**
  10. * 支付
  11. *
  12. * @param {String} payment = ['wechat','alipay','wallet','mock'] - 支付方式
  13. * @param {String} orderType = ['goods','recharge','groupon'] - 订单类型
  14. * @param {String} id - 订单号
  15. */
  16. export default class SheepPay {
  17. constructor(payment, orderType, id) {
  18. this.payment = payment;
  19. this.id = id;
  20. this.orderType = orderType;
  21. this.payAction();
  22. }
  23. payAction() {
  24. const payAction = {
  25. WechatOfficialAccount: {
  26. wechat: () => {
  27. this.wechatOfficialAccountPay();
  28. },
  29. JSAPI:() => {
  30. this.fuYouWechatOfficialAccountPay();
  31. },
  32. alipay: () => {
  33. this.redirectPay(); // 现在公众号可以直接跳转支付宝页面
  34. },
  35. wallet: () => {
  36. this.walletPay();
  37. },
  38. mock: () => {
  39. this.mockPay();
  40. },
  41. wx_pub:() => {
  42. payAction.WechatOfficialAccount.wechat();
  43. }
  44. },
  45. WechatMiniProgram: {
  46. wechat: () => {
  47. this.wechatMiniProgramPay();
  48. },
  49. JSAPI:() => {
  50. this.fuYouWechatOfficialAccountPay();
  51. },
  52. alipay: () => {
  53. this.copyPayLink();
  54. },
  55. wallet: () => {
  56. this.walletPay();
  57. },
  58. mock: () => {
  59. this.mockPay();
  60. },
  61. wx_pub:() => {
  62. this.wechatMiniProgramPay();
  63. }
  64. },
  65. App: {
  66. wechat: () => {
  67. this.wechatAppPay();
  68. },
  69. JSAPI:() => {
  70. this.fuYouWechatOfficialAccountPay();
  71. },
  72. alipay: () => {
  73. this.alipay();
  74. },
  75. wallet: () => {
  76. this.walletPay();
  77. },
  78. mock: () => {
  79. this.mockPay();
  80. }
  81. },
  82. H5: {
  83. wechat: () => {
  84. this.wechatWapPay();
  85. },
  86. JSAPI:() => {
  87. this.fuYouWechatOfficialAccountPay();
  88. },
  89. alipay: () => {
  90. this.redirectPay();
  91. },
  92. wallet: () => {
  93. this.walletPay();
  94. },
  95. mock: () => {
  96. this.mockPay();
  97. },
  98. wx_pub:() => {
  99. this.wechatWapPay();
  100. }
  101. },
  102. };
  103. // console.log(payAction[sheep.$platform.name],this.payment)
  104. return payAction[sheep.$platform.name][this.payment]();
  105. }
  106. // 预支付
  107. prepay(channel) {
  108. return new Promise(async (resolve, reject) => {
  109. let data = {
  110. id: this.id,
  111. channelCode: channel,
  112. channelExtras: {}
  113. };
  114. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid
  115. if (['wx_pub', 'wx_lite'].includes(channel)) {
  116. const openid = await sheep.$platform.useProvider('wechat').getOpenid(true);
  117. console.log(openid)
  118. // 如果获取不到 openid,微信无法发起支付,此时需要引导
  119. if (!openid) {
  120. this.bindWeixin();
  121. return;
  122. }
  123. data.channelExtras.openid = openid;
  124. }
  125. // 发起预支付 API 调用
  126. PayOrderApi.submitOrder(data).then((res) => {
  127. // 成功时
  128. res.code === 0 && resolve(res);
  129. // 失败时
  130. if (res.code !== 0 && res.msg.indexOf('无效的openid') >= 0) {
  131. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid 不正确的情况
  132. if (res.msg.indexOf('无效的openid') >= 0 // 获取的 openid 不正确时,或者随便输入了个 openid
  133. ||
  134. res.msg.indexOf('下单账号与支付账号不一致') >= 0
  135. ){ // https://developers.weixin.qq.com/community/develop/doc/00008c53c347804beec82aed051c00
  136. this.bindWeixin();
  137. }
  138. }
  139. });
  140. });
  141. }
  142. // 富友预支付
  143. fuYouPrePay(channel) {
  144. return new Promise(async (resolve, reject) => {
  145. let data = {
  146. id: this.id,
  147. channelCode:channel,
  148. req: {
  149. trade_type: channel,
  150. }
  151. };
  152. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid
  153. if (['wx_pub', 'wx_lite','JSAPI'].includes(channel)) {
  154. const openid = await sheep.$platform.useProvider('wechat').getOpenid(true);
  155. // 如果获取不到 openid,微信无法发起支付,此时需要引导
  156. if (!openid) {
  157. this.bindWeixin();
  158. return;
  159. }
  160. data.req.sub_openid = openid;
  161. }
  162. // console.log("富友支付",data)
  163. // 发起预支付 API 调用
  164. PayOrderApi.fuYouSubmitOrder(data).then((res) => {
  165. // 成功时
  166. res.code === 0 && resolve(res);
  167. // 失败时
  168. if (res.code !== 0 && res.msg.indexOf('无效的openid') >= 0) {
  169. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid 不正确的情况
  170. if (res.msg.indexOf('无效的openid') >= 0 // 获取的 openid 不正确时,或者随便输入了个 openid
  171. ||
  172. res.msg.indexOf('下单账号与支付账号不一致') >= 0
  173. ) { // https://developers.weixin.qq.com/community/develop/doc/00008c53c347804beec82aed051c00
  174. this.bindWeixin();
  175. }
  176. }
  177. });
  178. });
  179. }
  180. // #ifdef H5
  181. // 富友微信公众号 JSSDK 支付
  182. async fuYouWechatOfficialAccountPay() {
  183. console.log("富友微信公众号 JSSDK 支付");
  184. // this.payResult('fail');
  185. let {
  186. code,
  187. data
  188. } = await this.fuYouPrePay('JSAPI');
  189. if (code !== 0) {
  190. return;
  191. }
  192. let newJsonString = data.replace(/"sdk_package":/g, '"packageValue":');
  193. const payConfig = JSON.parse(newJsonString);
  194. console.log('payConfig',payConfig);
  195. // return;
  196. $wxsdk.wxpay(payConfig, {
  197. success: () => {
  198. this.payResult('success');
  199. },
  200. cancel: () => {
  201. sheep.$helper.toast('支付已手动取消');
  202. },
  203. fail: (error) => {
  204. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  205. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  206. return
  207. }
  208. this.payResult('fail');
  209. },
  210. });
  211. }
  212. // 微信公众号 JSSDK 支付
  213. async wechatOfficialAccountPay() {
  214. // this.payResult('fail');
  215. console.log("原微信公众号 JSSDK 支付")
  216. let {
  217. code,
  218. data
  219. } = await this.prepay('wx_pub');
  220. if (code !== 0) {
  221. return;
  222. }
  223. const payConfig = JSON.parse(data.displayContent);
  224. $wxsdk.wxpay(payConfig, {
  225. success: () => {
  226. this.payResult('success');
  227. },
  228. cancel: () => {
  229. sheep.$helper.toast('支付已手动取消');
  230. },
  231. fail: (error) => {
  232. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  233. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  234. return
  235. }
  236. this.payResult('fail');
  237. },
  238. });
  239. }
  240. // 浏览器微信 H5 支付 TODO 非繁人:待接入
  241. async wechatWapPay() {
  242. const {
  243. error,
  244. data
  245. } = await this.prepay();
  246. if (error === 0) {
  247. const redirect_url =
  248. `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  249. location.href = `${data.pay_data.h5_url}&redirect_url=${encodeURIComponent(redirect_url)}`;
  250. }
  251. }
  252. // 支付链接 TODO 非繁人:待接入
  253. async redirectPay() {
  254. let {
  255. error,
  256. data
  257. } = await this.prepay();
  258. if (error === 0) {
  259. const redirect_url =
  260. `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  261. location.href = data.pay_data + encodeURIComponent(redirect_url);
  262. }
  263. }
  264. // #endif
  265. // 微信小程序支付
  266. async wechatMiniProgramPay() {
  267. // let that = this;
  268. let {
  269. code,
  270. data
  271. } = await this.prepay('wx_lite');
  272. if (code !== 0) {
  273. return;
  274. }
  275. // 调用微信小程序支付
  276. const payConfig = JSON.parse(data.displayContent);
  277. uni.requestPayment({
  278. provider: 'wxpay',
  279. timeStamp: payConfig.timeStamp,
  280. nonceStr: payConfig.nonceStr,
  281. package: payConfig.packageValue,
  282. signType: payConfig.signType,
  283. paySign: payConfig.paySign,
  284. success: (res) => {
  285. this.payResult('success');
  286. },
  287. fail: (err) => {
  288. if (err.errMsg === 'requestPayment:fail cancel') {
  289. sheep.$helper.toast('支付已手动取消');
  290. } else {
  291. this.payResult('fail');
  292. }
  293. },
  294. });
  295. }
  296. // 余额支付
  297. async walletPay() {
  298. const {
  299. code
  300. } = await this.prepay('wallet');
  301. code === 0 && this.payResult('success');
  302. }
  303. // 模拟支付
  304. async mockPay() {
  305. const {
  306. code
  307. } = await this.prepay('mock');
  308. code === 0 && this.payResult('success');
  309. }
  310. // 支付宝复制链接支付 TODO 非繁人:待接入
  311. async copyPayLink() {
  312. let that = this;
  313. let {
  314. error,
  315. data
  316. } = await this.prepay();
  317. if (error === 0) {
  318. // 引入showModal 点击确认 复制链接;
  319. uni.showModal({
  320. title: '支付宝支付',
  321. content: '复制链接到外部浏览器',
  322. confirmText: '复制链接',
  323. success: (res) => {
  324. if (res.confirm) {
  325. sheep.$helper.copyText(data.pay_data);
  326. }
  327. },
  328. });
  329. }
  330. }
  331. // 支付宝支付 TODO 非繁人:待接入
  332. async alipay() {
  333. let that = this;
  334. const {
  335. error,
  336. data
  337. } = await this.prepay();
  338. if (error === 0) {
  339. uni.requestPayment({
  340. provider: 'alipay',
  341. orderInfo: data.pay_data, //支付宝订单数据
  342. success: (res) => {
  343. that.payResult('success');
  344. },
  345. fail: (err) => {
  346. if (err.errMsg === 'requestPayment:fail [paymentAlipay:62001]user cancel') {
  347. sheep.$helper.toast('支付已手动取消');
  348. } else {
  349. that.payResult('fail');
  350. }
  351. },
  352. });
  353. }
  354. }
  355. // 微信支付 TODO 非繁人:待接入
  356. async wechatAppPay() {
  357. let that = this;
  358. let {
  359. error,
  360. data
  361. } = await this.prepay();
  362. if (error === 0) {
  363. uni.requestPayment({
  364. provider: 'wxpay',
  365. orderInfo: data.pay_data, //微信订单数据(官方说是string。实测为object)
  366. success: (res) => {
  367. that.payResult('success');
  368. },
  369. fail: (err) => {
  370. err.errMsg !== 'requestPayment:fail cancel' && that.payResult('fail');
  371. },
  372. });
  373. }
  374. }
  375. // 支付结果跳转,success:成功,fail:失败
  376. payResult(resultType) {
  377. // console.log(this.id)
  378. sheep.$router.redirect('/pages/pay/resultYuan', {
  379. id: this.id,
  380. orderType: this.orderType,
  381. payState: resultType
  382. });
  383. }
  384. // 引导绑定微信
  385. bindWeixin() {
  386. uni.showModal({
  387. title: '微信支付',
  388. content: '请先绑定微信再使用微信支付',
  389. confirmText: '绑定',
  390. success: function(res) {
  391. if (res.confirm) {
  392. sheep.$platform.useProvider('wechat').bind();
  393. }
  394. },
  395. });
  396. }
  397. }
  398. export function getPayMethods(channels) {
  399. console.log("来拿支付渠道",channels)
  400. let payMethods = [
  401. {
  402. icon: '/static/images/wechat.png',
  403. title: '微信支付',
  404. value: 'wx_pub',
  405. disabled: false,
  406. },
  407. {
  408. icon: '/static/images/wechat.png',
  409. title: '微信支付',
  410. value: 'JSAPI',
  411. disabled: false,
  412. },
  413. {
  414. icon: '/static/images/alipay.png',
  415. title: '支付宝支付',
  416. value: 'alipay',
  417. disabled: false,
  418. },
  419. {
  420. icon: '/static/images/wallet.png',
  421. title: '余额支付',
  422. value: 'wallet',
  423. disabled: false,
  424. },
  425. {
  426. icon: '/static/images/apple.png',
  427. title: 'Apple Pay',
  428. value: 'apple',
  429. disabled: false,
  430. },
  431. {
  432. icon: '/static/images/wallet.png',
  433. title: '模拟支付',
  434. value: 'mock',
  435. disabled: false,
  436. }
  437. ];
  438. const platform = sheep.$platform.name
  439. // 1. 处理【微信支付】
  440. const wechatMethod = payMethods[0];
  441. if ((platform === 'WechatOfficialAccount' && channels.includes('wx_pub')) ||
  442. (platform === 'WechatMiniProgram' && channels.includes('wx_lite')) ||
  443. (platform === 'App' && channels.includes('wx_app'))) {
  444. wechatMethod.disabled = false;
  445. }
  446. // 2. 处理【支付宝支付】
  447. const alipayMethod = payMethods[1];
  448. if ((platform === 'WechatOfficialAccount' && channels.includes('alipay_wap')) ||
  449. platform === 'WechatMiniProgram' && channels.includes('alipay_wap') ||
  450. platform === 'App' && channels.includes('alipay_app')) {
  451. alipayMethod.disabled = false;
  452. }
  453. // 3. 处理【余额支付】
  454. const walletMethod = payMethods[2];
  455. if (channels.includes('wallet')) {
  456. walletMethod.disabled = false;
  457. }
  458. // 4. 处理【苹果支付】TODO 非繁人:未来接入
  459. // 5. 处理【模拟支付】
  460. const mockMethod = payMethods[4];
  461. if (channels.includes('mock')) {
  462. mockMethod.disabled = false;
  463. }
  464. function filterPayMethods(payMethods, channels) {
  465. for (let i = payMethods.length - 1; i >= 0; i--) {
  466. if (!channels.includes(payMethods[i].value)) {
  467. payMethods.splice(i, 1);
  468. }
  469. }
  470. }
  471. // 示例:channels 只包含 'wechat' 和 'alipay'
  472. filterPayMethods(payMethods,channels);
  473. console.log(payMethods)
  474. return payMethods;
  475. }