pay.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  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. * @param {String} orderType2 = ['1','2'] - 中星订单类型,1商品 2消费分充值
  16. */
  17. export default class SheepPay {
  18. constructor(payment, orderType, id, orderType2) {
  19. this.payment = payment;
  20. this.id = id;
  21. this.orderType = orderType;
  22. this.orderType2 = orderType2;
  23. this.payAction();
  24. }
  25. payAction() {
  26. const payAction = {
  27. WechatOfficialAccount: {
  28. wechat: () => {
  29. this.wechatOfficialAccountPay();
  30. },
  31. JSAPI:() => {
  32. this.fuYouWechatOfficialAccountPay();
  33. },
  34. alipay: () => {
  35. this.redirectPay(); // 现在公众号可以直接跳转支付宝页面
  36. },
  37. wallet: () => {
  38. this.walletPay();
  39. },
  40. mock: () => {
  41. this.mockPay();
  42. },
  43. wx_pub:() => {
  44. payAction.WechatOfficialAccount.wechat();
  45. }
  46. },
  47. WechatMiniProgram: {
  48. wechat: () => {
  49. this.wechatMiniProgramPay();
  50. },
  51. JSAPI:() => {
  52. this.fuYouWechatOfficialAccountPay();
  53. },
  54. alipay: () => {
  55. this.copyPayLink();
  56. },
  57. wallet: () => {
  58. this.walletPay();
  59. },
  60. mock: () => {
  61. this.mockPay();
  62. },
  63. wx_pub:() => {
  64. this.wechatMiniProgramPay();
  65. }
  66. },
  67. App: {
  68. wechat: () => {
  69. this.wechatAppPay();
  70. },
  71. JSAPI:() => {
  72. this.fuYouWechatOfficialAccountPay();
  73. },
  74. alipay: () => {
  75. this.alipay();
  76. },
  77. wallet: () => {
  78. this.walletPay();
  79. },
  80. mock: () => {
  81. this.mockPay();
  82. }
  83. },
  84. H5: {
  85. wechat: () => {
  86. this.wechatWapPay();
  87. },
  88. JSAPI:() => {
  89. this.fuYouWechatOfficialAccountPay();
  90. },
  91. alipay: () => {
  92. this.redirectPay();
  93. },
  94. wallet: () => {
  95. this.walletPay();
  96. },
  97. mock: () => {
  98. this.mockPay();
  99. },
  100. wx_pub:() => {
  101. payAction.WechatOfficialAccount.wechat();
  102. }
  103. },
  104. };
  105. // console.log(payAction[sheep.$platform.name],this.payment)
  106. return payAction[sheep.$platform.name][this.payment]();
  107. }
  108. // 预支付
  109. prepay(channel) {
  110. return new Promise(async (resolve, reject) => {
  111. let data = {
  112. id: this.id,
  113. channelCode: channel,
  114. channelExtras: {},
  115. orderType:this.orderType2
  116. };
  117. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid
  118. if (['wx_pub', 'wx_lite'].includes(channel)) {
  119. const openid = await sheep.$platform.useProvider('wechat').getOpenid(true);
  120. // 如果获取不到 openid,微信无法发起支付,此时需要引导
  121. if (!openid) {
  122. this.bindWeixin();
  123. return;
  124. }
  125. data.channelExtras.openid = openid;
  126. }
  127. // 发起预支付 API 调用
  128. PayOrderApi.submitOrder(data).then((res) => {
  129. // 成功时
  130. res.code === 0 && resolve(res);
  131. // 失败时
  132. if (res.code !== 0 && res.msg.indexOf('无效的openid') >= 0) {
  133. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid 不正确的情况
  134. if (res.msg.indexOf('无效的openid') >= 0 // 获取的 openid 不正确时,或者随便输入了个 openid
  135. ||
  136. res.msg.indexOf('下单账号与支付账号不一致') >= 0
  137. ){ // https://developers.weixin.qq.com/community/develop/doc/00008c53c347804beec82aed051c00
  138. this.bindWeixin();
  139. }
  140. }
  141. });
  142. });
  143. }
  144. // 富友预支付
  145. fuYouPrePay(channel) {
  146. return new Promise(async (resolve, reject) => {
  147. let data = {
  148. id: this.id,
  149. channelCode:channel,
  150. orderType:this.orderType2,
  151. req: {
  152. trade_type: channel,
  153. }
  154. };
  155. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid
  156. if (['wx_pub', 'wx_lite','JSAPI'].includes(channel)) {
  157. const openid = await sheep.$platform.useProvider('wechat').getOpenid(true);
  158. // 如果获取不到 openid,微信无法发起支付,此时需要引导
  159. if (!openid) {
  160. this.bindWeixin();
  161. return;
  162. }
  163. data.req.sub_openid = openid;
  164. }
  165. // console.log("富友支付",data)
  166. // 发起预支付 API 调用
  167. PayOrderApi.fuYouSubmitOrder(data).then((res) => {
  168. // 成功时
  169. res.code === 0 && resolve(res);
  170. // 失败时
  171. if (res.code !== 0 && res.msg.indexOf('无效的openid') >= 0) {
  172. // 特殊逻辑:微信公众号、小程序支付时,必须传入 openid 不正确的情况
  173. if (res.msg.indexOf('无效的openid') >= 0 // 获取的 openid 不正确时,或者随便输入了个 openid
  174. ||
  175. res.msg.indexOf('下单账号与支付账号不一致') >= 0
  176. ) { // https://developers.weixin.qq.com/community/develop/doc/00008c53c347804beec82aed051c00
  177. this.bindWeixin();
  178. }
  179. }
  180. });
  181. });
  182. }
  183. // #ifdef H5
  184. // 富友微信公众号 JSSDK 支付
  185. async fuYouWechatOfficialAccountPay(orderType2) {
  186. // console.log("富友微信公众号 JSSDK 支付");
  187. let {
  188. code,
  189. data
  190. } = await this.fuYouPrePay('JSAPI');
  191. if (code !== 0) {
  192. return;
  193. }
  194. let newJsonString = data.replace(/"sdk_package":/g, '"packageValue":');
  195. const payConfig = JSON.parse(newJsonString);
  196. // console.log('payConfig',payConfig);
  197. // return;
  198. $wxsdk.wxpay(payConfig, {
  199. success: () => {
  200. this.payResult('success');
  201. },
  202. cancel: () => {
  203. sheep.$helper.toast('支付已手动取消');
  204. },
  205. fail: (error) => {
  206. if (error.errMsg.indexOf('chooseWXPay:没有此SDK或暂不支持此SDK模拟') >= 0) {
  207. sheep.$helper.toast('发起微信支付失败,原因:可能是微信开发者工具不支持,建议使用微信打开网页后支付');
  208. return
  209. }
  210. this.payResult('fail');
  211. },
  212. });
  213. }
  214. // 微信公众号 JSSDK 支付
  215. async wechatOfficialAccountPay(orderType2) {
  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. }