MicroCommunityWeb/public/pages/property/feePrintSpecManage/feePrintSpecManage.html
2023-09-04 00:50:33 +08:00

80 lines
4.3 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="打印配置信息" namespace="feePrintSpecManage"></vc:i18n></span>
</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>
<span><vc:i18n name="添加" namespace="feePrintSpecManage"></vc:i18n></span>
</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">
<span><vc:i18n name="图片" namespace="feePrintSpecManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="名称" namespace="feePrintSpecManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="规格" namespace="feePrintSpecManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="编码" namespace="feePrintSpecManage"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="操作" namespace="feePrintSpecManage"></vc:i18n></span>
</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)">
<span><vc:i18n name="修改" namespace="feePrintSpecManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteFeePrintSpecModel(feePrintSpec)">
<span><vc:i18n name="删除" namespace="feePrintSpecManage"></vc:i18n></span>
</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>