fix: BUG修改

This commit is contained in:
cjp 2023-09-11 18:17:31 +08:00
parent 8432bafdd5
commit 715d821095
4 changed files with 16 additions and 4 deletions

View File

@ -68,7 +68,11 @@
display: flex;
flex-direction: column;
> span {
width: 280px;
margin-bottom: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; //单行
}
}
.common-info {

View File

@ -23,9 +23,9 @@
<span>额定下行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span> -->
</div>
<div class="other-info">
<span>备案编号: {{ equipInfo.filingNumber ? equipInfo.filingNumber : "" }}</span>
<span :title="equipInfo.filingNumber">备案编号: {{ equipInfo.filingNumber ? equipInfo.filingNumber : "" }}</span>
<span>安装日期: {{ equipInfo.installTime ? equipInfo.installTime : "" }}</span>
<span>终端编号: {{ equipInfo.devNumber ? equipInfo.devNumber : "" }}</span>
<span :title="equipInfo.devNumber">终端编号: {{ equipInfo.devNumber ? equipInfo.devNumber : "" }}</span>
<span>更新时间: {{ equipInfo.realTime ? equipInfo.realTime : "" }}</span>
<!-- <span>安装时间: {{ equipInfo.installTime ? equipInfo.installTime : "" }}</span> -->
</div>

View File

@ -69,7 +69,11 @@
display: flex;
flex-direction: column;
> span {
width: 280px;
margin-bottom: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; //单行
}
}
.common-info {
@ -79,7 +83,11 @@
display: flex;
flex-direction: column;
> span {
width: 300px;
margin-bottom: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; //单行
}
}
img {

View File

@ -23,9 +23,9 @@
<span>额定下行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span> -->
</div>
<div class="other-info">
<span>备案编号: {{ equipInfo.filingNumber ? equipInfo.filingNumber : "" }}</span>
<span :title="equipInfo.filingNumber">备案编号: {{ equipInfo.filingNumber ? equipInfo.filingNumber : "" }}</span>
<span>安装日期: {{ equipInfo.installTime ? equipInfo.installTime : "" }}</span>
<span>终端编号: {{ equipInfo.devNumber ? equipInfo.devNumber : "" }}</span>
<span :title="equipInfo.devNumber">终端编号: {{ equipInfo.devNumber ? equipInfo.devNumber : "" }}</span>
<span>更新时间: {{ equipInfo.realTime ? equipInfo.realTime : "" }}</span>
<!-- <span>安装时间: {{ equipInfo.installTime ? equipInfo.installTime : "" }}</span> -->
</div>