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.
30 lines
868 B
30 lines
868 B
3 years ago
|
<view class="container">
|
||
|
<view class="nav">
|
||
|
<image src="../../../images/left.png"></image>
|
||
|
俱乐部消息
|
||
|
</view>
|
||
|
<view class="cluber">
|
||
|
<block wx:for="{{cluber}}" wx:key="cluber">
|
||
|
<view class="list">
|
||
|
<view class="list-top">
|
||
|
{{item.clubname}}<text>{{item.time}}</text>
|
||
|
</view>
|
||
|
<view class="list-content">
|
||
|
<view class="content-left">
|
||
|
<image src="{{item.img}}"></image>
|
||
|
{{item.name}}
|
||
|
</view>
|
||
|
<view class="statusIn" wx:if="{{item.status==1}}">
|
||
|
会员邀请加入
|
||
|
</view>
|
||
|
<view class="statusMa" wx:elif="{{item.status==2}}">
|
||
|
被设为管理员
|
||
|
</view>
|
||
|
<view class="statusOut" wx:else>
|
||
|
被撤销管理员
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|