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.

11 lines
424 B

<view class="index">
<view class="nav">
<navigator wx:for="{{labs}}" wx:key="{{lab.id}}" wx:for-item="lab" url="/pages/{{lab.id}}/{{lab.id}}">
<icon type="{{ done[lab.id] ? 'success' : 'waiting_circle' }}" size="24"></icon>
<text>{{lab.title}}</text>
</navigator>
</view>
<view class="clear">
<button bindtap="clear">清空任务状态</button>
</view>
</view>