zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<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>