fix: 生物由来照会画面の検索時のローディング対応漏れ

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-08-21 18:16:13 +09:00
parent aa5bab9f27
commit 8c8b5474f7

View File

@ -28,7 +28,7 @@
</td>
</tr>
</table>
<form class="_form _border" id="bio_search" name="search" action="/bio/BioSearchList" method="POST">
<form class="_form _border" id="bio_search" name="search" action="/bio/BioSearchList" method="POST" onsubmit="showLoading('_loading_for_other')">
<table class="search_table">
<tbody>
<tr>
@ -473,10 +473,13 @@
{% endwith %}
<!-- ローディング -->
<div id="loading">
<div id="loading_content">
<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>出力中...
</div>
</div>
<!-- ダウンロード中 -->
{% with progress_message = '出力中...'%}
{% include '_loading.html' %}
{% endwith %}
<!-- それ以外 -->
{% with progress_message = '', id = '_loading_for_other' %}
{% include '_loading.html' %}
{% endwith %}
</body>
</html>