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.
62 lines
2.0 KiB
62 lines
2.0 KiB
<view class="container"> |
|
<view class="nav"> |
|
<view class="nav-title"> |
|
<view bindtap="toindex">管理首页</view> |
|
<view bindtap="toedit">活动编辑</view> |
|
<view bindtap="tosign" class="active"><text>报名管理</text></view> |
|
</view> |
|
</view> |
|
<view class="content"> |
|
<view class="joined"> |
|
<view class="top"> |
|
<view class="other-top"> |
|
<image src="../../../images/left.png"></image> |
|
已报名 |
|
</view> |
|
</view> |
|
<view class="circle"> |
|
<block wx:for="{{joinlist}}" wx:key="joinlist"> |
|
<view class="list" bindtap="todetail"> |
|
<view class="list-left"> |
|
<image src="{{item.userPhoto}}"></image> |
|
</view> |
|
<view class="list-right"> |
|
<view class="right-top"> |
|
{{item.nickname}}<text>¥{{item.realCost}}</text> |
|
</view> |
|
<view class="right-content"> |
|
{{item.intro}} <text>微信支付</text> |
|
</view> |
|
</view> |
|
</view> |
|
</block> |
|
</view> |
|
</view> |
|
<view class="joined"> |
|
<view class="top"> |
|
<view class="other-top"> |
|
<image src="../../../images/left.png"></image> |
|
已取消 |
|
</view> |
|
</view> |
|
<view class="circle"> |
|
<block wx:for="{{cancellist}}" wx:key="cancellist"> |
|
<view class="list"> |
|
<view class="list-left"> |
|
<image src="{{item.userPhoto}}"></image> |
|
</view> |
|
<view class="list-right"> |
|
<view class="right-top"> |
|
{{item.nickname}}<text>¥{{item.realCost}}</text> |
|
</view> |
|
<view class="right-content"> |
|
{{item.intro}} <text>微信支付</text> |
|
</view> |
|
</view> |
|
</view> |
|
</block> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="add" bindtap="toadd"><image src="../../../images/addy.png"></image>添加报名成员</view> |
|
</view> |