pay.js 12 KB

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