taskPanel.axml 1.37 KB
<import src="../../template/avater/index.axml"/>
<import src="../../template/deleteBtn/index.axml"/>
<import src="../../template/checkbox/index.axml"/>
<view a:if="{{action == 'create'}}" class="picker-complete {{!currentTask.taskInfos.taskTitle ? 'btn-disabled' : ''}}" onTap='complete'>完成</view>
<view class="task-column edit-column">
  <template a:if="{{action == 'update'}}" is="checkbox" data="{{status: currentTask.taskStatus, id:currentTask.id}}"></template>
  <input onInput="inputChange" value="{{currentTask.taskInfos.taskTitle}}" placeholder="请输入任务标题"/>
</view>
<view class="margin-bottom">
  <view class="task-column participator-top" data-acceptorId="{{currentTask.acceptorId}}" onTap="handleExcutorChange">
    <text class="iconicon_attender iconfont icon"></text>
    <text class="participator-title">{{currentTask.acceptorInfo ? '执行人' : '设置执行人'}}</text>
    <text class="iconright iconfont icon"></text>
  </view>
  <view class="participator-bottom" a:if="{{currentTask.acceptorInfo}}">
    <view class="people" data-acceptorId="{{currentTask.acceptorId}}" onTap="handleExcutorChange">
      <template is="avater" data="{{item: currentTask.acceptorInfo}}"/>
      <view class="name">{{currentTask.acceptorInfo.username}}</view>
    </view>
  </view>
</view>
<template a:if="{{action == 'update'}}" is="deleteBtn" data="{{title: '删除该任务' }}"/>