feature GFRS-3716 获取支付参数接口入参字段修改2

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-09-11 13:54:36 +08:00
parent 6fcdb664a0
commit 3b16e035e3

View File

@@ -77,7 +77,7 @@
>去支付</van-button
>
</div>
<div class="bg-white bottom-btn" v-if="radio == '3' && !isWeixin">
<div class="bg-white bottom-btn" v-if="radio == 'WXJSAPI' && !isWeixin">
<van-button type="danger" style="width: 50vw" @click="payMent" v-no-more-click="1000" :disabled="payStatus == '1' || payStatus == '2' || payStatus == '8'"
>去支付</van-button
>
@@ -165,7 +165,7 @@ export default {
},
created() {
if (this.isWeixin) {
this.radio = '3'
this.radio = 'WXJSAPI'
this.isLoading = true
}
},
@@ -485,7 +485,7 @@ export default {
const bankCode = JSON.parse(window.localStorage.getItem('underWriteData')).bankCode;
// 1.微信支付方式 2.银行卡支付 且 招商银行卡 需要签约 20220426 招商银行不走官微签约,同其他银行签约流程
// if (!((this.radio == '' && ('CMB' == bankCode || '308' == bankCode)) || this.radio == '3')){
if (!(this.radio == '3')){
if (!(this.radio == 'WXJSAPI')){
isNeedSignFlag = false;
return true;
}