pay.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  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. let {
  185. code,
  186. data
  187. } = await this.fuYouPrePay('JSAPI');
  188. if (code !== 0) {
  189. return;
  190. }
  191. let newJsonString = data.replace(/"sdk_package":/g, '"packageValue":');
  192. const payConfig = JSON.parse(newJsonString);
  193. console.log('payConfig',payConfig);
  194. // return;
  195. $wxsdk.wxpay(payConfig, {
  196. success: () => {
  197. this.payResult('success');
  198. },
  199. cancel: () => {
  200. sheep.$helper.toast('支付已手动取消');
  201. },
  202. fail: (error) => {
  203. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  204. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  205. return
  206. }
  207. this.payResult('fail');
  208. },
  209. });
  210. }
  211. // 微信公众号 JSSDK 支付
  212. async wechatOfficialAccountPay() {
  213. // this.payResult('fail');
  214. console.log("原微信公众号 JSSDK 支付")
  215. let {
  216. code,
  217. data
  218. } = await this.prepay('wx_pub');
  219. if (code !== 0) {
  220. return;
  221. }
  222. const payConfig = JSON.parse(data.displayContent);
  223. $wxsdk.wxpay(payConfig, {
  224. success: () => {
  225. this.payResult('success');
  226. },
  227. cancel: () => {
  228. sheep.$helper.toast('支付已手动取消');
  229. },
  230. fail: (error) => {
  231. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  232. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  233. return
  234. }
  235. this.payResult('fail');
  236. },
  237. });
  238. }
  239. // 浏览器微信 H5 支付 TODO 非繁人:待接入
  240. async wechatWapPay() {
  241. const {
  242. error,
  243. data
  244. } = await this.prepay();
  245. if (error === 0) {
  246. const redirect_url =
  247. `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  248. location.href = `${data.pay_data.h5_url}&redirect_url=${encodeURIComponent(redirect_url)}`;
  249. }
  250. }
  251. // 支付链接 TODO 非繁人:待接入
  252. async redirectPay() {
  253. let {
  254. error,
  255. data
  256. } = await this.prepay();
  257. if (error === 0) {
  258. const redirect_url =
  259. `${getRootUrl()}pages/pay/result?id=${this.id}&payment=${this.payment}&orderType=${this.orderType}`;
  260. location.href = data.pay_data + encodeURIComponent(redirect_url);
  261. }
  262. }
  263. // #endif
  264. // 微信小程序支付
  265. async wechatMiniProgramPay() {
  266. // let that = this;
  267. let {
  268. code,
  269. data
  270. } = await this.prepay('wx_lite');
  271. if (code !== 0) {
  272. return;
  273. }
  274. // 调用微信小程序支付
  275. const payConfig = JSON.parse(data.displayContent);
  276. uni.requestPayment({
  277. provider: 'wxpay',
  278. timeStamp: payConfig.timeStamp,
  279. nonceStr: payConfig.nonceStr,
  280. package: payConfig.packageValue,
  281. signType: payConfig.signType,
  282. paySign: payConfig.paySign,
  283. success: (res) => {
  284. this.payResult('success');
  285. },
  286. fail: (err) => {
  287. if (err.errMsg === 'requestPayment:fail cancel') {
  288. sheep.$helper.toast('支付已手动取消');
  289. } else {
  290. this.payResult('fail');
  291. }
  292. },
  293. });
  294. }
  295. // 余额支付
  296. async walletPay() {
  297. const {
  298. code
  299. } = await this.prepay('wallet');
  300. code === 0 && this.payResult('success');
  301. }
  302. // 模拟支付
  303. async mockPay() {
  304. const {
  305. code
  306. } = await this.prepay('mock');
  307. code === 0 && this.payResult('success');
  308. }
  309. // 支付宝复制链接支付 TODO 非繁人:待接入
  310. async copyPayLink() {
  311. let that = this;
  312. let {
  313. error,
  314. data
  315. } = await this.prepay();
  316. if (error === 0) {
  317. // 引入showModal 点击确认 复制链接;
  318. uni.showModal({
  319. title: '支付宝支付',
  320. content: '复制链接到外部浏览器',
  321. confirmText: '复制链接',
  322. success: (res) => {
  323. if (res.confirm) {
  324. sheep.$helper.copyText(data.pay_data);
  325. }
  326. },
  327. });
  328. }
  329. }
  330. // 支付宝支付 TODO 非繁人:待接入
  331. async alipay() {
  332. let that = this;
  333. const {
  334. error,
  335. data
  336. } = await this.prepay();
  337. if (error === 0) {
  338. uni.requestPayment({
  339. provider: 'alipay',
  340. orderInfo: data.pay_data, //支付宝订单数据
  341. success: (res) => {
  342. that.payResult('success');
  343. },
  344. fail: (err) => {
  345. if (err.errMsg === 'requestPayment:fail [paymentAlipay:62001]user cancel') {
  346. sheep.$helper.toast('支付已手动取消');
  347. } else {
  348. that.payResult('fail');
  349. }
  350. },
  351. });
  352. }
  353. }
  354. // 微信支付 TODO 非繁人:待接入
  355. async wechatAppPay() {
  356. let that = this;
  357. let {
  358. error,
  359. data
  360. } = await this.prepay();
  361. if (error === 0) {
  362. uni.requestPayment({
  363. provider: 'wxpay',
  364. orderInfo: data.pay_data, //微信订单数据(官方说是string。实测为object)
  365. success: (res) => {
  366. that.payResult('success');
  367. },
  368. fail: (err) => {
  369. err.errMsg !== 'requestPayment:fail cancel' && that.payResult('fail');
  370. },
  371. });
  372. }
  373. }
  374. // 支付结果跳转,success:成功,fail:失败
  375. payResult(resultType) {
  376. // console.log(this.id)
  377. sheep.$router.redirect('/pages/pay/resultYuan', {
  378. id: this.id,
  379. orderType: this.orderType,
  380. payState: resultType
  381. });
  382. }
  383. // 引导绑定微信
  384. bindWeixin() {
  385. uni.showModal({
  386. title: '微信支付',
  387. content: '请先绑定微信再使用微信支付',
  388. confirmText: '绑定',
  389. success: function(res) {
  390. if (res.confirm) {
  391. sheep.$platform.useProvider('wechat').bind();
  392. }
  393. },
  394. });
  395. }
  396. }
  397. export function getPayMethods(channels) {
  398. // console.log("来拿支付渠道",channels)
  399. let payMethods = [
  400. {
  401. icon: '/static/images/wechat.png',
  402. title: '微信支付',
  403. value: 'wx_pub',
  404. disabled: false,
  405. },
  406. {
  407. icon: '/static/images/wechat.png',
  408. title: '微信支付',
  409. value: 'JSAPI',
  410. disabled: false,
  411. },
  412. {
  413. icon: '/static/images/alipay.png',
  414. title: '支付宝支付',
  415. value: 'alipay',
  416. disabled: false,
  417. },
  418. {
  419. icon: '/static/images/wallet.png',
  420. title: '余额支付',
  421. value: 'wallet',
  422. disabled: false,
  423. },
  424. {
  425. icon: '/static/images/apple.png',
  426. title: 'Apple Pay',
  427. value: 'apple',
  428. disabled: false,
  429. },
  430. {
  431. icon: '/static/images/wallet.png',
  432. title: '模拟支付',
  433. value: 'mock',
  434. disabled: false,
  435. }
  436. ];
  437. const platform = sheep.$platform.name
  438. // 1. 处理【微信支付】
  439. const wechatMethod = payMethods[0];
  440. if ((platform === 'WechatOfficialAccount' && channels.includes('wx_pub')) ||
  441. (platform === 'WechatMiniProgram' && channels.includes('wx_lite')) ||
  442. (platform === 'App' && channels.includes('wx_app'))) {
  443. wechatMethod.disabled = false;
  444. }
  445. // 2. 处理【支付宝支付】
  446. const alipayMethod = payMethods[1];
  447. if ((platform === 'WechatOfficialAccount' && channels.includes('alipay_wap')) ||
  448. platform === 'WechatMiniProgram' && channels.includes('alipay_wap') ||
  449. platform === 'App' && channels.includes('alipay_app')) {
  450. alipayMethod.disabled = false;
  451. }
  452. // 3. 处理【余额支付】
  453. const walletMethod = payMethods[2];
  454. if (channels.includes('wallet')) {
  455. walletMethod.disabled = false;
  456. }
  457. // 4. 处理【苹果支付】TODO 非繁人:未来接入
  458. // 5. 处理【模拟支付】
  459. const mockMethod = payMethods[4];
  460. if (channels.includes('mock')) {
  461. mockMethod.disabled = false;
  462. }
  463. function filterPayMethods(payMethods, channels) {
  464. for (let i = payMethods.length - 1; i >= 0; i--) {
  465. if (!channels.includes(payMethods[i].value)) {
  466. payMethods.splice(i, 1);
  467. }
  468. }
  469. }
  470. // 示例:channels 只包含 'wechat' 和 'alipay'
  471. filterPayMethods(payMethods,channels);
  472. console.log(payMethods)
  473. return payMethods;
  474. }