123456789101112131415161718192021 |
- <view
- class="ant-checklist-item"
- onTap="{{ item.disabled || item.readonly ? '' : 'onChecklistItemClick' }}"
- hover-class="{{ item.disabled || item.readonly ? '' : 'ant-checklist-item-hover' }}"
- hover-start-time="{{ 20 }}"
- hover-stay-time="{{ 40 }}">
- <view
- class="ant-checklist-item-content {{ item.disabled ? 'ant-checklist-item-content-disabled' : '' }}">
- <view class="ant-checklist-item-content-box">
- <slot
- name="content"
- item="{{ item }}" />
- </view>
- <view
- a:if="{{ checked }}"
- class="ant-checklist-item-content-icon">
- <slot name="icon" />
- </view>
- </view>
- <view class="ant-checklist-item-line" />
- </view>
|