This commit is contained in:
java110 2023-03-10 12:24:16 +08:00
parent 4867cb6f5e
commit 98f0376e3a

View File

@ -3,7 +3,8 @@
data: { data: {
payFeeOrderConfirmInfo: { payFeeOrderConfirmInfo: {
totalDiscountMoney: 0.0, totalDiscountMoney: 0.0,
accountAmount: 0.0 accountAmount: 0.0,
payType: '',
} }
}, },
_initMethod: function() { _initMethod: function() {
@ -13,11 +14,12 @@
vc.on('payFeeOrderConfirm', 'openConfirm', function(_data) { vc.on('payFeeOrderConfirm', 'openConfirm', function(_data) {
$that.payFeeOrderConfirmInfo = _data; $that.payFeeOrderConfirmInfo = _data;
$("#doPayFeeModal").modal('show'); $("#doPayFeeModal").modal('show');
$that.payFeeOrderConfirmInfo.payType = _data.payType;
if ($that.payFeeOrderConfirmInfo.payType != 'common') { if ($that.payFeeOrderConfirmInfo.payType != 'common') {
$that.payFeeOrderInfo.payType = _type;
setTimeout('document.getElementById("authCode").focus()', 1000); setTimeout('document.getElementById("authCode").focus()', 1000);
} }
$that.$forceUpdate();
}) })
}, },