index.wxml 492 B

123456789101112131415161718
  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" />
  14. </view>
  15. </view>