<div class="detail-module_splitter">
     <?php 
$dto = AuditProposalDto::createByProposal($proposal);
?>
     <div class="detail-module_title">
         <h3>任务</h3>
     </div>
     <table class="detail-table">
     <tr>
         <th>任务</th>
         <th>组</th>
         <th>状态</th>
         <th>执行人</th>
     </tr>
     <tr>
         <td><?php 
echo $task->id;
?>
</td>
         <td><?php 
echo $task->inspectGroup->fullName();
?>
</td>
         <td><?php 
echo $task->getStatusDesc();
?>
</td>
         <td><?php 
echo $task->inspector->realName;
?>
</td>