index.wxml 726 B

123456789101112131415161718192021222324
  1. <!-- <view bindtap="onTap">
  2. <view bindtap="onTap">你点我呀</view>
  3. </view> -->
  4. <!-- <view bindtap="onTap">你点我呀</view> -->
  5. <view class="box">
  6. <text class="title">
  7. TODOLIST
  8. </text>
  9. <!-- 在绑定key值时,默认会自动从item下找某个属性 -->
  10. <view wx:for="{{todolist}}" wx:key="id" class="todo-item">
  11. <checkbox checked="{{item.done}}"></checkbox>
  12. <text style="width: 375rpx; margin: 0 8px;">{{ item.title }}</text>
  13. <icon type="cancel" bindtap="onRemoveTodo" data-id="{{item.id}}" />
  14. </view>
  15. </view>
  16. <view bindtap="onTap">
  17. <view bindtap="onTap" style="padding: 20px;border: 2px solid;background-color: red;">
  18. <view catch:tap="onTap">你点我呀</view>
  19. </view>
  20. </view>