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

65 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<div>
<div v-for="equipmentInfo in equipmentInfo.equipmentAccounts">
<div class="row">
<div class="col-sm-4">
<span><span><vc:i18n name="设备ID" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.machineId}}</span>
</div>
<div class="col-sm-6">
<span></span>
</div>
<div class="col-sm-2">
<span><span><vc:i18n name="打印时间" namespace="equipmentInfo"></vc:i18n></span>{{nowTime}}</span>
</div>
</div>
<table class="table table-bordered margin-top" style="margin-bottom: 0;">
<thead>
<tr>
<th scope="col" colspan="6" class="text-center"><span style="font-size: 40px;"><vc:i18n name="设备标签" namespace="equipmentInfo"></vc:i18n></span></th>
</tr>
</thead>
<tbody style="font-size: 28px;">
<tr>
<td style="width: 50%;"><span><vc:i18n name="项目" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.yqName}}</td>
<td><span><vc:i18n name="位置名称" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.locationDetail}}</td>
</tr>
<tr>
<td><span><vc:i18n name="设备名称" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.machineName}}</td>
<td><span><vc:i18n name="重要等级" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.levelName}}</td>
</tr>
<tr>
<td><span><vc:i18n name="系统名称" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.sysName}}</td>
<td><span><vc:i18n name="启用日期" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.firstEnableTime}}</td>
</tr>
<tr>
<td><span><vc:i18n name="设备品牌" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.brand}}</td>
<td rowspan="4">
<div :id="'a'+equipmentInfo.machineId" style="width:200px; height:200px; "></div>
</td>
</tr>
<tr>
<td><span><vc:i18n name="规格型号" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.model}}</td>
</tr>
<tr>
<td><span><vc:i18n name="编码" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.machineCode}}</td>
</tr>
<tr>
<td><span><vc:i18n name="责任人" namespace="equipmentInfo"></vc:i18n></span>{{equipmentInfo.chargeUseName}}</td>
</tr>
<tr>
<td colspan="2" class="text-center"><span></span>设备标志 严禁损坏</td>
</tr>
</tbody>
</table>
</div>
<div id="print-btn">
<button class="btn btn-primary float-right" type="button" v-on:click="_printInspectionRouteDiv()">
<i class="fa fa-check"></i>&nbsp;打印
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" v-on:click="_closePage()"><span><vc:i18n name="取消" namespace="equipmentInfo"></vc:i18n></span>
</button>
</div>
</div>
</div>