文件路径:pages/payment.vue
getPayType方法按照圈住的改一下,代码:
getPayType(){
let that = this;
that.$axios.get("/api/config").then(res => {
that.alipay_status = res.data.alipay_open;
that.yue_status = res.data.balance_func_status;
if(res.data.balance_func_status == 0)that.currentPay(1)
}).catch(err => {
that.$message.error(err);
});
},