feat: テーブル上書き画面にローディングを適用

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-08-18 12:09:17 +09:00
parent 9b3ef38a01
commit 561cb81bdd

View File

@ -11,7 +11,7 @@
function Form_Submit_Disp_Dialog(){
var msg = "ダミー従業員担当施設マスタのデータがすべて上書きされます。よろしいですか?"
if (confirmDialog(msg)) {
document.getElementById("loading").style.display = "block";
showLoading();
document.getElementById("overRided").style.display = "none";
} else {
return false;
@ -53,9 +53,8 @@
<div id="overRided" class="csvOutputMessage">ダミー従業員担当施設マスタのデータを本番従業員担当施設マスタのデータで上書きしました</div>
</p>
{% endif %}
<div id="loading" class="csvOutputMessage" style="display:none;">
<p>データ上書き中...<br>しばらくお待ち下さい。</p>
</div>
{% with progress_message = 'データ上書き中...しばらくお待ち下さい。'%}
{% include '_loading.html' %}
{% endwith %}
</body>
</html>