|
|
@@ -28,9 +28,11 @@
|
|
|
<div class="lineGrey"></div>
|
|
|
<div class="deviceCode" v-if="inspectionType">
|
|
|
<div class="vertical"></div>
|
|
|
- <p>设备编号:{{ deviceCode }}</p>
|
|
|
- <p>投放编号:{{ putInCode }}</p>
|
|
|
- <p v-if="inspectionType == 'place'">资产编号:{{ equipmentCode }}</p>
|
|
|
+ <div class="codeData">
|
|
|
+ <p>设备编号:{{ deviceCode }}</p>
|
|
|
+ <p>投放编号:{{ putInCode }}</p>
|
|
|
+ <p v-if="inspectionType == 'place'">资产编号:{{ equipmentCode }}</p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="lineGrey" v-if="inspectionType"></div>
|
|
|
<div
|
|
|
@@ -4655,6 +4657,7 @@ export default {
|
|
|
checkUnManage: checkUnManage,
|
|
|
deviceCode: this.deviceCode || '', //设备编号
|
|
|
putInCode: this.putInCode || '', //投放编号
|
|
|
+ equipmentCode: this.equipmentCode || '', //资产编号
|
|
|
};
|
|
|
}
|
|
|
|
|
|
@@ -5324,15 +5327,19 @@ export default {
|
|
|
border-radius: 5px;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
.vertical {
|
|
|
background-color: #2b2f3a;
|
|
|
height: 14px;
|
|
|
width: 8px;
|
|
|
border-radius: 40px;
|
|
|
- position: absolute;
|
|
|
+ margin-right: 10px;
|
|
|
+ /* position: absolute;
|
|
|
left: -3px;
|
|
|
- top: 50px;
|
|
|
+ top: 50px; */
|
|
|
}
|
|
|
.van-f-red {
|
|
|
color: red;
|