yuminge-app/yun-min-program-plugin-master/packageC/Myshaky/Registration/Registration.wxml

21 lines
844 B
Plaintext

<!--packageC/Myshaky/Registration/Registration.wxml-->
<view class="Registration-content">
<view class="blank" wx:if="{{kong}}">
<view>还没有人报名</view>
</view>
<view wx:else>
<view class="list_box" wx:for="{{datalist}}" wx:key="index">
<view class="user" wx:if="{{item.has_one_member}}">
<image src="{{item.has_one_member.avatar}}"></image>
</view>
<view class="time">
<view class="name" wx:if="{{item.has_one_member}}">{{item.has_one_member.realname?item.has_one_member.realname:item.has_one_member.nickname}}</view>
<view class="nius">
<view class="calender">{{item.created_at}}</view>
</view>
</view>
</view>
<view wx:if="{{!isLoadMore}}" style="text-align: center; font-size: 28rpx; margin-top: 20rpx">没有更多了</view>
</view>
</view>