Commit 9cbcf276 authored by guozhiwei's avatar guozhiwei

fix: 问题修复

parent 914382b4
...@@ -440,14 +440,15 @@ export default { ...@@ -440,14 +440,15 @@ export default {
} }
this.error = ''; this.error = '';
this.setAmount(); this.setAmount();
// TODO: 需要补充, 判断 vcc额度是否小于订单金额,根据用户状态和额度进行提示
// (this.displayInfo.accountStatus !== ACCOUNT_APPLY_SUCCESS ||
// (this.displayInfo.accountStatus === ACCOUNT_APPLY_SUCCESS &&
if ( if (
!params && !params &&
!this.isDetention && !this.isDetention &&
IS_THIRD_PAY(this.payType) && IS_THIRD_PAY(this.payType) &&
!isOcr && !isOcr &&
(this.displayInfo.accountStatus !== ACCOUNT_APPLY_SUCCESS || +this.displayInfo.creditPayInfo.canAmt >= +this.displayInfo.orderAmt
(this.displayInfo.accountStatus === ACCOUNT_APPLY_SUCCESS &&
+this.displayInfo.creditPayInfo.canAmt >= +this.displayInfo.orderAmt))
) { ) {
this.isDetention = true; this.isDetention = true;
isDetentionFn.call(this); isDetentionFn.call(this);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment