|
@@ -107,7 +107,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="layui-item layui-col-xs12 form-table-container" id="defaultTemplate">
|
|
|
- <table id="defaultContentTable" class="table details table-bordered table-condensed">
|
|
|
+ <table id="defaultContentTable" class="table details table-bordered table-condensed" style="table-layout:fixed;">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th width="50px">序号</th>
|
|
@@ -120,7 +120,7 @@
|
|
|
<c:forEach items="${auditDefaultTemplateList}" var="obj">
|
|
|
<tr>
|
|
|
<td> <input type="checkbox" class="i-checks" id="${fns:getValue(obj, 'content')}"></td>
|
|
|
- <td class="codelabel">${obj.content}</td>
|
|
|
+ <td class="codelabel" style="word-wrap:break-word;white-space:normal;" title="${obj.content}">${obj.content}</td>
|
|
|
</tr>
|
|
|
</c:forEach>
|
|
|
</c:when>
|
|
@@ -138,7 +138,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="layui-item layui-col-xs12 form-table-container hide" id="template">
|
|
|
- <table id="contentTable" class="table details table-bordered table-condensed">
|
|
|
+ <table id="contentTable" class="table details table-bordered table-condensed" style="table-layout:fixed;">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th width="50px">序号</th>
|
|
@@ -151,7 +151,7 @@
|
|
|
<c:forEach items="${auditTemplateList}" var="obj">
|
|
|
<tr>
|
|
|
<td> <input type="checkbox" class="i-checks" id="${fns:getValue(obj, 'content')}"></td>
|
|
|
- <td class="codelabel">${obj.content}</td>
|
|
|
+ <td class="codelabel" style="word-wrap:break-word;white-space:normal;" title="${obj.content}">${obj.content}</td>
|
|
|
</tr>
|
|
|
</c:forEach>
|
|
|
</c:when>
|