pay.js 12 KB

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