带我审核-表格主体和表格头不对齐问题;审核项目中缩小内容跑右边去的问题;

master
suhang_max@163.com 2022-12-06 16:26:57 +08:00
parent c1c791c4e0
commit fd955ccd27
2 changed files with 13 additions and 6 deletions
src/main/resources/templates/admin

View File

@ -137,7 +137,10 @@
vertical-align: middle;
}
/* 解决项目审核页面缩小50%显示,表格内容变小靠右显示问题 */
.am-tabs.palm-tabs.outer>.am-tabs-bd.palm-tabs-bd{
overflow: visible !important;
}
</style>
<div id="printContainer"></div>
<div class="project_approve" id="contentContainer">
@ -166,7 +169,9 @@
</#if>
<li><a href="#tab6">项目审核记录</a></li>
</ul>
<div class="am-tabs-bd palm-tabs-bd">
<#-- 项目立项(概算)基本信息 展示内容 -->
<div <#if check==1>class="am-tab-panel am-fade am-in am-active" <#else> class="am-tab-panel am-fade am-in"</#if> id="tab1">
<input name="id" id="id" type="hidden" value="${project.id}" />
<input name="type" id="type" type="hidden" value="${type}"/>
@ -392,6 +397,7 @@
</tr>
</table>
</div>
<#-- 项目预算信息 展示内容 -->
<div class="am-tab-panel am-fade am-in" id="tab3">
<#if huiQianFile! !="">
<div style="float: right"><a href="${huiQianFile}" download target="_blank">下载会签单</a></div>

View File

@ -481,9 +481,9 @@
<table class="am-table am-table-striped am-table-hover table-main">
<thead style="display:block;width: 4200px;">
<tr class="am-text-nowrap">
<th class="table-title">序号</th>
<th class="table-title">项目编号</th>
<th class="table-title">项目名称</th>
<th class="table-title" width="60px">序号</th>
<th class="table-title" width="120px">项目编号</th>
<th class="table-title" width="200px">项目名称</th>
<th class="table-title">项目类型</th>
<th class="table-title">垫资模式</th>
<th class="table-title">垫资利息</th>
@ -521,7 +521,9 @@
<tr>
<td width="60px">${list.tempId!}</td>
<td class="huanhang" width="120px">${list.projectNo!}</td>
<td class="huanhang" width="480px"><a style="cursor: pointer;text-decoration:none" onclick="approve2(${list.id})">${list.name!}</a></td>
<td class="huanhang" width="200px">
<a style="cursor: pointer;text-decoration:none" onclick="approve2(${list.id})">${list.name!}</a>
</td>
<td>${list.typeDesc!}</td>
<td>${list.underwrittenModeStr!}</td>
<td>${Utils.format(list.advanceInterestAmount, "0.00")}</td>
@ -575,7 +577,6 @@
</div>
</div>
</td>
</tr>
</#list>
</tbody>