mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 18:11:00 +08:00
59 lines
2.7 KiB
HTML
59 lines
2.7 KiB
HTML
<div class="animated fadeInRight ecommerce">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>批量导入日志</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
|
|
返回
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<table class="footable table table-stripped toggle-arrow-tiny"
|
|
data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">导入编号</th>
|
|
<th class="text-center">导入类型</th>
|
|
<th class="text-center">成功数量</th>
|
|
<th class="text-center">失败数量</th>
|
|
<th class="text-center">备注</th>
|
|
<th class="text-center">导入时间</th>
|
|
<th class="text-center">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="log in assetImportLogInfo.logs">
|
|
<td class="text-center">{{log.logId}}</td>
|
|
<td class="text-center">{{log.logTypeName}}</td>
|
|
<td class="text-center">{{log.successCount}}</td>
|
|
<td class="text-center">{{log.errorCount}}</td>
|
|
<td class="text-center">{{log.remark}}</td>
|
|
<td class="text-center">{{log.createTime}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group" >
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDetail(log)">详情
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|