Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
runas24 authored Apr 15, 2024
1 parent abd03c6 commit eaa3378
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,24 @@ document.getElementById("loanForm").addEventListener("submit", function(event) {

// Simulate processing delay
setTimeout(function() {
overlay.style.display = "none";
progressText.innerText = "Ваша заявка предварительно одобрена";
}, 10000);
});
var submitButton = document.querySelector('button[type="submit"]');
submitButton.disabled = true; // Отключаем кнопку во время загрузки

var desiredAmount = parseFloat(document.getElementById("desiredAmount").value.replace(/\D/g, ''));
var creditBurden = parseFloat(document.getElementById("creditBurden").value.replace(/\D/g, ''));
var pensionContributions = parseFloat(document.getElementById("pensionContributions").value.replace(/\D/g, ''));

// Рассчитываем максимальную сумму кредита
// Больший процент от пенсионных отчислений увеличивает максимальную сумму кредита
var maxLoanAmount = desiredAmount - creditBurden + (pensionContributions * 6 * 2);

setTimeout(function() {
submitButton.disabled = false; // Включаем кнопку после загрузки

overlay.style.display = "none";
progressText.innerText = "Ваша заявка предварительно одобрена";

document.getElementById("maxLoanAmount").innerText = "Максимальная сумма кредита: " + maxLoanAmount.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, " ") + " тенге";
}, 1000); // Здесь можно установить другое значение задержки, если нужно
}, 5000); // Здесь можно установить другое значение задержки, если нужно
});

0 comments on commit eaa3378

Please sign in to comment.