You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
956 B
19 lines
956 B
<!-- subpages/leaderModel/pages/leaderIndex/components/goodIndex/goodIndex.wxml -->
|
|
<view class="good-box" wx:for="{{ListTop10}}" wx:key="index" bind:tap="goCommentDetail" data-officerId="{{item.officerId}}">
|
|
<view class="num">
|
|
<image class="one" src="../../../../images/one.png" wx:if="{{index==0}}"></image>
|
|
<image class="one" src="../../../../images/two.png" wx:if="{{index==1}}"></image>
|
|
<image class="one" src="../../../../images/three.png" wx:if="{{index==2}}"></image>
|
|
<text class="one-text" src="../../../../images/one.png" wx:if="{{index >=3}}">
|
|
{{index+1}}
|
|
</text>
|
|
</view>
|
|
<view class="content">
|
|
<view class="name">{{item.name}}</view>
|
|
<view class="content-text">
|
|
<image src="../../../../images/icon.png" class="icon"></image>
|
|
<text>{{item.position}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="numtop">{{item.number}}</view>
|
|
</view>
|
|
|