|
@@ -96,8 +96,8 @@
|
|
|
<ul class="item">
|
|
|
<li class="row" v-for="(item, index) in list4" :key="index">
|
|
|
<span class="time">{{ item[0] }}</span>
|
|
|
- <span class="person">{{ item[1] }}</span>
|
|
|
- <span class="result">{{ item[2] }}</span>
|
|
|
+ <span class="person ellipsis">{{ item[1] }}</span>
|
|
|
+ <span class="result ellipsis">{{ item[2] }}</span>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</VueSeamlessScroll>
|
|
@@ -235,6 +235,7 @@ export default {
|
|
|
margin-bottom: 6px;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
.row,
|
|
|
li,
|
|
|
a {
|
|
@@ -255,7 +256,13 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
+ // 超出隐藏
|
|
|
+ display: inline-block;
|
|
|
+ overflow: hidden ;
|
|
|
+ text-overflow: ellipsis ;
|
|
|
+ white-space:nowrap;
|
|
|
}
|
|
|
+
|
|
|
.num {
|
|
|
flex: 0.15;
|
|
|
}
|
|
@@ -263,6 +270,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
/deep/.el-input__inner {
|
|
|
background-color: #184254;
|
|
|
width: 120px;
|