|
@@ -16,6 +16,15 @@
|
|
|
display: inline-block;
|
|
|
}
|
|
|
</style>
|
|
|
+<script>
|
|
|
+ function readOpenInfo(value) {
|
|
|
+ layer.open({
|
|
|
+ title: '意见',
|
|
|
+ btn: ['关闭'],
|
|
|
+ content: value
|
|
|
+ });
|
|
|
+ }
|
|
|
+</script>
|
|
|
<div class="layui-col-sm12 layui-col-md12 layui-col-lg12 workflow-table">
|
|
|
<table id="spLiu" class="table table-striped table-bordered table-hover table-condensed details">
|
|
|
<thead>
|
|
@@ -107,7 +116,7 @@
|
|
|
<span>流程结束</span>
|
|
|
</c:when>
|
|
|
<c:otherwise>
|
|
|
- <span title="${act.comment }">${act.comment }</span>
|
|
|
+ <span title="${act.comment }" onclick="readOpenInfo('${act.comment}')">${act.comment }</span>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
|