修改来函信息新增修改时显示无效专项任务,专项任务添加描述列,刷新返回按钮

This commit is contained in:
zhanghongqing
2018-03-21 11:23:43 +08:00
parent 7c0b8fbebf
commit d5d708a492
4 changed files with 14 additions and 3 deletions

View File

@@ -9,6 +9,13 @@
<div class="page-content">
<div class="row">
<div class="theme-panel hidden-xs hidden-sm">
<button type="button" class="btn btn-default" onclick="history.go(-1)"><spring:message code="back"/></button>
</div>
<h3 class="page-title">
<spring:message code="special_task"/>
</h3>
<div class="col-md-12">
<div class="portlet box blue">
<div class="portlet-title">

View File

@@ -11,6 +11,7 @@
<div class="page-content">
<shiro:hasPermission name="basics:taskInfo:edit">
<div class="theme-panel hidden-xs hidden-sm">
<button type="button" class="btn btn-default" onclick="javascript:window.location='${ctx}/basics/taskInfo/list'"><spring:message code="refresh"></spring:message></button>
<button type="button" class="btn btn-primary"
onClick="javascript:window.location='${ctx}/basics/taskInfo/form'">
<i class="fa fa-plus"></i>
@@ -162,6 +163,7 @@
<th><spring:message code="task_org"></spring:message></th>
<th><spring:message code="task_time"></spring:message></th>
<th><spring:message code="state"></spring:message></th>
<th><spring:message code="desc"></spring:message></th>
<th><spring:message code="creator"></spring:message></th>
<th class="sort-column createTime"><spring:message code="create_time"/></th>
<th><spring:message code="editor"/></th>
@@ -185,6 +187,7 @@
<c:when test="${taskInfo.isAudit eq '2'}"><span class="label label-warning"><spring:message code="unapproved"></spring:message></span></c:when>
</c:choose>
</td>
<td>${taskInfo.taskDesc }</td>
<td>${taskInfo.creatorName }</td>
<td><fmt:formatDate value="${taskInfo.createTime }" pattern="yyyy-MM-dd"/></td>
<td>${taskInfo.editorName }</td>