MicroCommunityWeb/public/pages/property/maintainancePlanMachine/maintainancePlanMachine.html
2022-11-08 14:50:53 +08:00

53 lines
2.9 KiB
HTML
Executable File

<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="保养设备" namespace="maintainancePlanMachine"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-white btn-sm " v-on:click="_goBack()" style="margin-right:10px">
<span><vc:i18n name="返回" namespace="maintainancePlanMachine"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddMaintainancePlanMachineModal()">
<i class="fa fa-plus"></i><span><vc:i18n name="添加" namespace="maintainancePlanMachine"></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="maintainancePlanMachine"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="编号" namespace="maintainancePlanMachine"></vc:i18n></span></th>
<th class="text-right"><span><vc:i18n name="操作" namespace="maintainancePlanMachine"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="machine in maintainancePlanMachineInfo.machines">
<td class="text-center">{{machine.machineName}}</td>
<td class="text-center">{{machine.machineId}}</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteMaintainancePlanMachineModel(machine)"><span><vc:i18n name="删除"></vc:i18n></span>
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="8">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/paginationPlus" namespace="maintainancePlanMachine"></vc:create>
</div>
</div>
</div>
<vc:create path="property/chooseMaintainancePlanMachine" emitListener="maintainancePlanMachine" emitFunction="listInspectionPoint">
</vc:create>
<vc:create path="property/deleteMaintainancePlanMachine"></vc:create>
</div>