pay.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. * 订单支付
  3. */
  4. import Vue from "vue";
  5. //#ifdef H5
  6. import $wxApi from "./wxapi.js";
  7. //#endif
  8. import Request from '@/js_sdk/luch-request/luch-request/index.js';
  9. const $http = new Request();
  10. import {config} from './config/config.js';
  11. export default {
  12. //微信支付
  13. wxPay(obj = {}) {
  14. uni.showLoading({
  15. title: '支付中'
  16. });
  17. return new Promise(r => {
  18. let token = uni.getStorageSync("token");
  19. $http.post(config.apiBaseurl + "/app/pay",obj,{
  20. header: {
  21. Accept:'application/json',
  22. Authorization: 'Bearer '+ token, //注意Bearer后面有一空格
  23. },
  24. }).then(res=>{
  25. console.log('res',res);
  26. //#ifdef H5
  27. $wxApi.JSAPI(res.data.data).then(r);
  28. //#endif
  29. this.payError(res);
  30. })
  31. });
  32. },
  33. //支付错误处理
  34. payError(res){
  35. uni.hideLoading();
  36. // uni.navigateTo({
  37. // url: '/pages/usercenter/myorder/myorder',
  38. // fail:function(err){
  39. // console.log(err)
  40. // }
  41. // });
  42. // console.log('1',res);
  43. if(res.code == 623){
  44. setTimeout(i=>{
  45. new Vue().$api.goto("/pages/userCenter/myorder/myorder");
  46. },2000);
  47. uni.showToast({
  48. title:res.msg + " 即将跳转到订单页",
  49. icon:"none",
  50. duration:2000
  51. });
  52. }
  53. }
  54. }