From db6fba3205438f3a32a5eef308e0cbf7496970a3 Mon Sep 17 00:00:00 2001 From: liuqimichale <123456lq> Date: Tue, 6 Apr 2021 16:41:54 +0800 Subject: [PATCH] 农行支付---立即支付 --- src/components/orderPay.vue | 2 +- src/utils/utils.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/orderPay.vue b/src/components/orderPay.vue index f11543c..81fd1c1 100644 --- a/src/components/orderPay.vue +++ b/src/components/orderPay.vue @@ -133,7 +133,7 @@ export default { } console.log(this.clientBrowser) - if (this.clientBrowser == '农行') { // 农行支付 + if (this.clientBrowser == '立即') { // 农行支付 var bankabcParams = {}; bankabcParams.orderId = this.orderId; bankabcParams.carNumber = this.carNumber; diff --git a/src/utils/utils.js b/src/utils/utils.js index ae759a5..e4917dd 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -82,10 +82,10 @@ export default { return '支付宝' } else if (/BankabciPhone/.test(window.navigator.userAgent)) { console.log("农行客户端"); - return '农行' + return '立即' }else if (/BankabcAndroid/.test(window.navigator.userAgent)) { console.log("农行客户端"); - return '农行' + return '立即' }else { console.log("其他浏览器"); return '支付宝' -- libgit2 0.21.4