|
|
@@ -191,6 +191,12 @@
|
|
|
color: #222222;
|
|
|
white-space: nowrap;
|
|
|
}
|
|
|
+ .user_name {
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ width: 124px;
|
|
|
+ }
|
|
|
.user_msg img {
|
|
|
width: 40px;
|
|
|
height: 40px;
|
|
|
@@ -201,7 +207,7 @@
|
|
|
font-weight: 400;
|
|
|
font-size: 12px;
|
|
|
color: #FF0000;
|
|
|
- max-width: 20%;
|
|
|
+ max-width: 46%;
|
|
|
text-align: right;
|
|
|
}
|
|
|
.ask_status2 {
|
|
|
@@ -507,7 +513,7 @@
|
|
|
<div class="ask_user" v-for="item in lightData.wxcpLightenClientList" :key="item.id">
|
|
|
<div class="user_msg">
|
|
|
<img :src="item.head || './img/ask_btn.png'" />
|
|
|
- <div>{{item.name}}</div>
|
|
|
+ <div class="user_name">{{item.name}}</div>
|
|
|
</div>
|
|
|
<div v-if="item.auditStatus === 1" class="ask_status1">审核中</div>
|
|
|
<div v-if="item.auditStatus === 2" class="ask_status1">
|