taskList.axml 596 Bytes
<import src="../../template/avater/index.axml"/>
<import src="../../template/checkbox/index.axml"/>
<view class="task-list">
  <view class="task-box" a:for='{{taskList}}'>
    <template is="checkbox" data="{{ status: item.taskStatus, id: item.id, groupId: item.groupId, scheduleId: item.scheduleId}}"></template>
    <view class="task-title" data-pop="{{title: '会议任务', type: 'updateTask'}}" onTap="showPop" data-task="{{item}}">{{item.taskInfos.taskTitle}}
    </view>
    <template is="avater" a:if="{{item.acceptorInfo}}" data="{{item: item.acceptorInfo, split: 1}}"/>
  </view>
</view>