浏览代码

支付的0元页面跳转

秦鹏 3 年之前
父节点
当前提交
0521499e61
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      src/components/payment/Payment.vue

+ 5 - 1
src/components/payment/Payment.vue

@@ -147,7 +147,11 @@ export default {
       })
         .then((res) => {
           console.log(res);
-          window.location.href = res.pay_page_url;
+          if (!res.pay_page_url && item.price == 0) {
+            window.location.href = "/GCLS-Personal/#/EnterSys/OrderPaySuccess";
+          } else {
+            window.location.href = res.pay_page_url;
+          }
           // this.$message({
           //   type: "success",
           //   message: "支付成功",