pay.js 730 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * 订单支付
  3. */
  4. import Vue from "vue";
  5. //#ifdef H5
  6. import $wxApi from "./wxapi.js";
  7. //#endif
  8. import $http from "./utils/axios.js"
  9. export default {
  10. //微信支付
  11. wxPay(obj = {}) {
  12. uni.showLoading({
  13. title: '支付中'
  14. });
  15. return new Promise(r => {
  16. $http.post("/wechat/h5/pay",obj)
  17. .then(res=>{
  18. //#ifdef H5
  19. $wxApi.JSAPI(res.retBody).then(r);
  20. //#endif
  21. this.payError(res);
  22. })
  23. });
  24. },
  25. //支付错误处理
  26. payError(res){
  27. uni.hideLoading();
  28. if(res.code == 623){
  29. setTimeout(i=>{
  30. new Vue().$api.goto("/pages/userCenter/myOrder/myOrder");
  31. },2000);
  32. uni.showToast({
  33. title:res.msg + " 即将跳转到订单页",
  34. icon:"none",
  35. duration:2000
  36. });
  37. }
  38. }
  39. }