ibms-dome/Backend/Views/DeviceImport/_RawDataImport.cshtml
2022-10-14 16:08:54 +08:00

26 lines
1.1 KiB
Plaintext

<div class="row mb-3">
<div class="col-12 d-flex justify-content-end">
<form id="import-file-form">
<input id="import_file_input" type="file" name="import_file_input" onchange="importRawDataFile()" style="display:none" multiple accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" />
<button type="button" class="btn btn-success waves-effect waves-themed mb-3" id="import-file-btn" onclick="preImportRawDataFile()"><span class="fal fa-plus mr-1"></span>設備檔案匯入</button>
</form>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- datatable start -->
<table id="rawDataImport_table" class="table table-bordered table-hover m-0 text-center">
<thead class="thead-themed">
<tr>
<th>序</th>
<th>設備編號</th>
<th>匯入結果</th>
<th>匯入時間</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>