MicroCommunityWeb/public/components/common/listDemoStudy/listDemoStudy.html
2021-04-23 10:14:20 +08:00

71 lines
2.9 KiB
HTML
Executable File

<div class="animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>demo学习信息</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddDemoStudyModal()">
<i class="fa fa-plus"></i>
添加DEMO
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th>用例ID</th>
<th data-hide="phone">名称</th>
<th data-hide="phone">用例值</th>
<th data-hide="phone">备注</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="demo in listDemoStudyInfo.demos">
<td>
{{demo.demoId}}
</td>
<td>
{{demo.demoName}}
</td>
<td>
{{demo.demoValue}}
</td>
<td>
{{demo.demoRemark}}
</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openEditDemoStudyModel(demo)">修改</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDelDemoStudyModel(demo)">删除</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>
<!--<vc:create path="property/addFloor"></vc:create>
<vc:create path="property/editFloor"></vc:create>
<vc:create path="property/deleteFloor"></vc:create>-->
</div>