pay.js 12 KB

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