带我审核-表格主体和表格头不对齐问题;审核项目中缩小内容跑右边去的问题;
parent
c1c791c4e0
commit
fd955ccd27
|
@ -137,7 +137,10 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 解决项目审核页面,缩小50%显示,表格内容变小靠右显示问题 */
|
||||||
|
.am-tabs.palm-tabs.outer>.am-tabs-bd.palm-tabs-bd{
|
||||||
|
overflow: visible !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<div id="printContainer"></div>
|
<div id="printContainer"></div>
|
||||||
<div class="project_approve" id="contentContainer">
|
<div class="project_approve" id="contentContainer">
|
||||||
|
@ -166,7 +169,9 @@
|
||||||
</#if>
|
</#if>
|
||||||
<li><a href="#tab6">项目审核记录</a></li>
|
<li><a href="#tab6">项目审核记录</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="am-tabs-bd palm-tabs-bd">
|
<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">
|
<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="id" id="id" type="hidden" value="${project.id}" />
|
||||||
<input name="type" id="type" type="hidden" value="${type}"/>
|
<input name="type" id="type" type="hidden" value="${type}"/>
|
||||||
|
@ -392,6 +397,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<#-- 项目预算信息 展示内容 -->
|
||||||
<div class="am-tab-panel am-fade am-in" id="tab3">
|
<div class="am-tab-panel am-fade am-in" id="tab3">
|
||||||
<#if huiQianFile! !="">
|
<#if huiQianFile! !="">
|
||||||
<div style="float: right"><a href="${huiQianFile}" download target="_blank">下载会签单</a></div>
|
<div style="float: right"><a href="${huiQianFile}" download target="_blank">下载会签单</a></div>
|
||||||
|
|
|
@ -481,9 +481,9 @@
|
||||||
<table class="am-table am-table-striped am-table-hover table-main">
|
<table class="am-table am-table-striped am-table-hover table-main">
|
||||||
<thead style="display:block;width: 4200px;">
|
<thead style="display:block;width: 4200px;">
|
||||||
<tr class="am-text-nowrap">
|
<tr class="am-text-nowrap">
|
||||||
<th class="table-title">序号</th>
|
<th class="table-title" width="60px">序号</th>
|
||||||
<th class="table-title">项目编号</th>
|
<th class="table-title" width="120px">项目编号</th>
|
||||||
<th class="table-title">项目名称</th>
|
<th class="table-title" width="200px">项目名称</th>
|
||||||
<th class="table-title">项目类型</th>
|
<th class="table-title">项目类型</th>
|
||||||
<th class="table-title">垫资模式</th>
|
<th class="table-title">垫资模式</th>
|
||||||
<th class="table-title">垫资利息</th>
|
<th class="table-title">垫资利息</th>
|
||||||
|
@ -521,7 +521,9 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td width="60px">${list.tempId!}</td>
|
<td width="60px">${list.tempId!}</td>
|
||||||
<td class="huanhang" width="120px">${list.projectNo!}</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.typeDesc!}</td>
|
||||||
<td>${list.underwrittenModeStr!}</td>
|
<td>${list.underwrittenModeStr!}</td>
|
||||||
<td>${Utils.format(list.advanceInterestAmount, "0.00")}</td>
|
<td>${Utils.format(list.advanceInterestAmount, "0.00")}</td>
|
||||||
|
@ -575,7 +577,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</#list>
|
</#list>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in New Issue