流程公共模块提交

master
pengqiang 2021-11-18 20:49:49 +08:00
parent 200834ea8e
commit a113449b0e
1 changed files with 20 additions and 0 deletions

View File

@ -32,6 +32,7 @@
<th class="table-date">结束时间</th> <th class="table-date">结束时间</th>
<th class="table-date">用时</th> <th class="table-date">用时</th>
<th class="table-set am-text-center">意见</th> <th class="table-set am-text-center">意见</th>
<th class="table-set am-text-center">操作</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -47,6 +48,25 @@
</#if></td> </#if></td>
<td>${list.duration!}</td> <td>${list.duration!}</td>
<td>${list.comments!}</td> <td>${list.comments!}</td>
<td>
<#if !list.endTime??>
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="completeTask('${list.procInsId}', '${list.taskId}', 2)">
<span class="am-icon-pencil-square-o"></span>
审批通过
</button>
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="completeTask('${list.procInsId}', '${list.taskId}', 3)">
<span class="am-icon-pencil-square-o"></span>
驳回
</button>
</#if>
</td>
</tr> </tr>
</#list> </#list>
</#if> </#if>