台電躉售紀錄查詢

This commit is contained in:
ken 2022-06-30 14:37:50 +08:00
parent d3a690cf98
commit 842ac525d5

View File

@ -153,6 +153,7 @@
</div> </div>
<div class="pr-3" id="quickSearchOption"> <div class="pr-3" id="quickSearchOption">
<button type="button" class="btn btn-primary waves-effect waves-themed ml-1" onclick="Searchform()" id="daybtn">查詢</button> <button type="button" class="btn btn-primary waves-effect waves-themed ml-1" onclick="Searchform()" id="daybtn">查詢</button>
<div id="wait" style="display:none"><img src="/img/loading.gif"></div>
</div> </div>
<div class="pr-3"> <div class="pr-3">
<button type="button" class="btn btn-primary waves-effect waves-themed" onclick="AddRecord()"><span class="fal fa-plus mr-1"></span> 新增</button> <button type="button" class="btn btn-primary waves-effect waves-themed" onclick="AddRecord()"><span class="fal fa-plus mr-1"></span> 新增</button>
@ -184,6 +185,7 @@
</tr> </tr>
</thead> </thead>
<tbody id="totbody"> <tbody id="totbody">
</tbody> </tbody>
</table> </table>
</div> </div>
@ -551,7 +553,7 @@
"data": "function" "data": "function"
}], }],
"language": { "language": {
"emptyTable": "無資料", "emptyTable": "目前無資料",
"processing": "處理中...", "processing": "處理中...",
"loadingRecords": "載入中...", "loadingRecords": "載入中...",
"lengthMenu": "顯示 _MENU_ 項結果", "lengthMenu": "顯示 _MENU_ 項結果",
@ -595,7 +597,7 @@
if (data == null || data.length == 0) { if (data == null || data.length == 0) {
this.data = []; this.data = [];
} }
$("#wait").hide();
return data; return data;
} }
}, },
@ -606,6 +608,7 @@
} }
function Searchform() { function Searchform() {
$("#wait").show();
/* console.log(selecterd_powerstationId);*/ /* console.log(selecterd_powerstationId);*/
if (searchType == 0 || searchType == 1) { if (searchType == 0 || searchType == 1) {
timerange = $('#DateGettext').val(); timerange = $('#DateGettext').val();
@ -613,6 +616,10 @@
else { else {
timerange = $('#DateGet').val(); timerange = $('#DateGet').val();
} }
var table = $('#RecordTable').DataTable();
table.clear().draw();
RecordTable.ajax.reload(); RecordTable.ajax.reload();
} }