|
|
@@ -22,7 +22,8 @@
|
|
|
<div class="tui-msg-name">
|
|
|
<div class="tui-user-name">
|
|
|
{{ item.name }}
|
|
|
- <text v-if="item.level == 2" class="super-man">大客户</text>
|
|
|
+ <text v-if="item.level == 2" class="super-man">大客</text>
|
|
|
+ <text v-if="item.level == 0" class="ls-man">散客</text>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="tui-msg-content">
|
|
|
@@ -317,7 +318,6 @@ export default {
|
|
|
font-size: 32upx;
|
|
|
.super-man{
|
|
|
margin-left:20upx;
|
|
|
- color:red;
|
|
|
font-size:24upx;
|
|
|
display:inline-block;
|
|
|
color:white;
|
|
|
@@ -326,6 +326,16 @@ export default {
|
|
|
background-color: green;
|
|
|
border-radius: 11upx;
|
|
|
}
|
|
|
+ .ls-man{
|
|
|
+ margin-left:20upx;
|
|
|
+ font-size:24upx;
|
|
|
+ display:inline-block;
|
|
|
+ color:white;
|
|
|
+ border:1upx solid #a5b1a5;
|
|
|
+ padding:8upx 10upx;
|
|
|
+ background-color: #a5b1a5;
|
|
|
+ border-radius: 11upx;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|