MicroCommunityWeb/public/pages/property/feePrintSpecManage/feePrintSpecManage.html
2021-07-22 09:26:13 +08:00

66 lines
3.2 KiB
HTML
Executable File

<div>
<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="_openAddFeePrintSpecModal()">
<i class="fa fa-plus"></i>添加
</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>
</tr>
</thead>
<tbody>
<tr v-for="feePrintSpec in feePrintSpecManageInfo.feePrintSpecs">
<td class="text-center">
<img :src="feePrintSpec.qrImg" style="border-radius: 5px;" width="100px"
height="100px"/>
</td>
<td class="text-center">{{feePrintSpec.printName}}</td>
<td class="text-center">{{feePrintSpec.specCd == '1010'?'催缴打印说明':'收据打印说明'}}</td>
<td class="text-center">{{feePrintSpec.printId}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditFeePrintSpecModel(feePrintSpec)">修改
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteFeePrintSpecModel(feePrintSpec)">删除
</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/addFeePrintSpec" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="property/editFeePrintSpec"></vc:create>
<vc:create path="property/deleteFeePrintSpec"></vc:create>
</div>