mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 14:17:54 +08:00
84 lines
4.1 KiB
HTML
84 lines
4.1 KiB
HTML
<div class="margin-top">
|
|
<div class="row margin-top-lg">
|
|
<div class="col-lg-3 padding-right-xs padding-left-xl">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入编号','printerRuleMachine')"
|
|
v-model.trim="printerRuleMachineInfo.conditions.prmId" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-3 padding-right-xs padding-left-xl">
|
|
<div class="form-group">
|
|
<input type="text" :placeholder="vc.i18n('请输入打印机名称','printerRuleMachine')"
|
|
v-model.trim="printerRuleMachineInfo.conditions.machineName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-3 padding-right-xs padding-right-xl " style="margin-top:5px">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_queryPrinterRuleMachineMethod()">
|
|
<i class="fa fa-search"></i>查询
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_resetPrinterRuleMachineMethod()">
|
|
<i class="fa fa-repeat"></i>重置
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_openAddPrinterRuleMachineModal()">
|
|
<i class="fa fa-plus"></i>
|
|
<span><vc:i18n name="添加" namespace="printerRuleMachine"></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<span><vc:i18n name='编号' namespace='printerRuleMachineManage'></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name='打印机名称' namespace='printerRuleMachineManage'></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name='打印数量' namespace='printerRuleMachineManage'></vc:i18n></span>
|
|
</th>
|
|
<th class="text-center">
|
|
<span><vc:i18n name='操作'></vc:i18n></span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="printerRuleMachine in printerRuleMachineInfo.printerRuleMachines">
|
|
<td class="text-center">{{printerRuleMachine.prmId}}</td>
|
|
<td class="text-center">{{printerRuleMachine.machineName}}</td>
|
|
<td class="text-center">{{printerRuleMachine.quantity}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditPrinterRuleMachineModel(printerRuleMachine)">
|
|
<span><vc:i18n name='修改'></vc:i18n></span>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeletePrinterRuleMachineModel(printerRuleMachine)">
|
|
<span><vc:i18n name='删除'></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/paginationPlus" namespace="printerRuleMachine"></vc:create>
|
|
</div>
|
|
<vc:create path="print/addPrinterRuleMachine" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="print/editPrinterRuleMachine"></vc:create>
|
|
<vc:create path="print/deletePrinterRuleMachine"></vc:create>
|
|
</div> |