pay.js 12 KB

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