Skip to content

Commit

Permalink
修复提醒类型显示错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhuisheng committed May 26, 2014
1 parent 7d087ff commit 6a3164d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/content/bpm/bpm-conf-notice-list.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ $(function() {
<tbody>
<c:forEach items="${bpmConfNotices}" var="item">
<tr>
<td>${item.type == 1 ? '到达' : '超时'}</td>
<td>${item.type == 0 ? '到达' : item.type == 1 ? '完成' : '超时'}</td>
<td>${item.receiver}</td>
<td>${item.dueDate}</td>
<td>${item.bpmMailTemplate.name}</td>
Expand Down

0 comments on commit 6a3164d

Please sign in to comment.