taskList.axml 789 Bytes
<import src="../../template/avater/index.axml"/>
<import src="../../template/checkbox/index.axml"/>
<view class="task-list {{customClass}}">
  <view class="task-box">
    <template is="checkbox" data="{{ 
      status: taskView.processState, 
      taskId: taskView.taskId, 
      meetingId: meetingId,
      commentId: commentId}}">
    </template>
    <view class="task-title" data-pop="{{title: '会议任务', type: 'updateTask'}}" onTap="showPop" data-task="{{taskView}}">
      <view>{{taskView.title}}</view>
      <view class="task-time">截止时间:{{ taskView.endTime ? taskView.endTime : '未设置'}}</view>
    </view>
    <template is="avater" a:if="{{taskView.executor && taskView.executor.length > 0}}" data="{{item: taskView.executor[0], split: 1}}"/>
  </view>
</view>