diff --git a/public/components/property/payFeeOrderConfirm/payFeeOrderConfirm.js b/public/components/property/payFeeOrderConfirm/payFeeOrderConfirm.js index f01b5a105..36cbf1f8e 100644 --- a/public/components/property/payFeeOrderConfirm/payFeeOrderConfirm.js +++ b/public/components/property/payFeeOrderConfirm/payFeeOrderConfirm.js @@ -3,7 +3,8 @@ data: { payFeeOrderConfirmInfo: { totalDiscountMoney: 0.0, - accountAmount: 0.0 + accountAmount: 0.0, + payType: '', } }, _initMethod: function() { @@ -13,11 +14,12 @@ vc.on('payFeeOrderConfirm', 'openConfirm', function(_data) { $that.payFeeOrderConfirmInfo = _data; $("#doPayFeeModal").modal('show'); - + $that.payFeeOrderConfirmInfo.payType = _data.payType; if ($that.payFeeOrderConfirmInfo.payType != 'common') { - $that.payFeeOrderInfo.payType = _type; setTimeout('document.getElementById("authCode").focus()', 1000); } + + $that.$forceUpdate(); }) },