|
|
@@ -48,6 +48,9 @@
|
|
|
<view class="title">
|
|
|
<view class="title-name clamp">{{ item.nickname }}</view>
|
|
|
</view>
|
|
|
+ <view class="flex star" v-if="item.zero_level >= 7">
|
|
|
+ <image src="../../static/icon/star.png" mode="" v-for="item in (item.zero_level*1 - 6)"></image>
|
|
|
+ </view>
|
|
|
<view class="time">
|
|
|
<text>{{ item.phone }} ({{ showLevel(item)}})</text>
|
|
|
</view>
|
|
|
@@ -342,7 +345,7 @@
|
|
|
|
|
|
.list_tpl {
|
|
|
width: 85%;
|
|
|
-
|
|
|
+
|
|
|
.title {
|
|
|
display: flex;
|
|
|
justify-content: flex-start;
|
|
|
@@ -389,6 +392,13 @@
|
|
|
font-size: $font-lg;
|
|
|
color: $font-color-light;
|
|
|
}
|
|
|
+ .star {
|
|
|
+ justify-content: flex-start;
|
|
|
+ image {
|
|
|
+ width: 36rpx;
|
|
|
+ height: 36rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|