Files

20 lines
740 B
Plaintext
Raw Permalink Normal View History

<view class="container">
<view class="info_list">
<block wx:for="{{userListInfo}}" wx:for-index="index">
<view class="weui_cell" bindtap="gotourl" data-id="{{index}}" style="position: relative; left: 0rpx; top: -14rpx">
<view class="weui_cell_hd"><image src="{{item.icon}}"></image></view>
<view class="weui_cell_bd">
<view class="weui_cell_bd_p"> {{item.text}} </view>
</view>
<view wx:if="{{item.isunread}}" class="badge">{{item.unreadNum}}</view>
<view class="with_arrow"></view>
</view>
</block>
</view>
<view class="logoutbutton">
<button bindtap="logout">{{logout}}</button>
</view>
</view>