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.
 

38 lines
1.5 KiB

<view class="container">
<view class="nav">
<view class="navtop">
<view wx:for="{{navTab}}" wx:key="index" data-idx="{{index}}" bindtap="currentTab"
class="{{currentTab==index ? 'cur' : ''}}"><text>{{item}}</text></view>
</view>
</view>
<view class="other">
<!-- <view class="other-top">
<image src="../../../images/left.png"></image>
发起的签到
</view> -->
<view class="other-circle">
<block wx:for="{{otheractive}}" wx:key="otheractive">
<view class="other-list">
<view class="list-top">
<view class="other-left">
<image src="{{item.activityLogo?item.activityLogo:logo}}" mode='aspectFill'></image>
</view>
<view class="other-right">
<view class="other-name">{{item.activityName}}</view>
<view class="other-time">{{item.activityAddr}}</view>
<view class="other-people">{{item.startTime}}
<view wx:if="{{currentTab=='0'}}" bindtap="tosign" data-id="{{item.activityId}}"><text>发起签到</text></view>
<view wx:else><text>今日签到</text></view>
</view>
</view>
</view>
<view class="sign" bindtap="tocode" wx:if="{{currentTab=='1'}}">
<view>第{{item.times}}次签到</view>
<view>已签到<text>{{item.times}}</text>/{{item.total}}</view>
<view>进行中<image src="../../../images/back.png"></image></view>
</view>
</view>
</block>
</view>
</view>
</view>