diff --git a/src/main/resources/static/common/css/print.css b/src/main/resources/static/common/css/print.css
index a3457d7..5ae6481 100644
--- a/src/main/resources/static/common/css/print.css
+++ b/src/main/resources/static/common/css/print.css
@@ -35,7 +35,7 @@
/*border-right: 1px solid #ddd;*/
/*border-left: 1px solid #ddd;*/
}
-#printContainer table td {
+#printContainer table > tr > td {
vertical-align: center;
/*border-right: 1px solid #ddd;*/
/*border-left: 1px solid #ddd;*/
diff --git a/src/main/resources/templates/admin/project_approve.ftl b/src/main/resources/templates/admin/project_approve.ftl
index da020ef..27c914a 100644
--- a/src/main/resources/templates/admin/project_approve.ftl
+++ b/src/main/resources/templates/admin/project_approve.ftl
@@ -691,15 +691,19 @@
+<#-- -->
+
+
<#--收入明细表-->
@@ -1112,9 +1117,13 @@
+<#-- -->
+
+
<#--收入明细表
采购成本明细表
diff --git a/src/main/resources/templates/admin/project_list.ftl b/src/main/resources/templates/admin/project_list.ftl
index 3ed77c6..f81124f 100644
--- a/src/main/resources/templates/admin/project_list.ftl
+++ b/src/main/resources/templates/admin/project_list.ftl
@@ -14,6 +14,57 @@
table-layout:fixed;
word-break:break-all
}
+ /*固定表头的列表*/
+ .fixed-list {
+ flex: 1 1 auto;
+ overflow: hidden;
+ }
+ .fixed-list table {
+ display: block;
+ width: 100%;
+ max-height: 100%;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ border: none;
+ overflow-y: hidden;
+ overflow-x: auto;
+ margin: 0;
+ }
+
+ .fixed-list.is-vertical-scroll table tbody {
+ max-height: calc(100% - 71px);
+ }
+ .fixed-list table>thead>tr>th {
+ height: 40px;
+ text-align: center;
+ vertical-align: middle;
+ }
+ .fixed-list table td {
+ height: 55px;
+ text-align: center;
+ }
+ .fixed-list table tbody {
+ display: block;
+ width: 100%;
+ max-height: calc(100% - 45px);
+ overflow-y: scroll;
+ overflow-x: hidden;
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .fixed-list table tr {
+ table-layout: fixed;
+ display: table;
+ }
+ .fixed-list table thead tr {
+ width: calc(100% - 18px);
+ border-top: 1px solid #ddd;
+ border-bottom: none;
+ }
+ .fixed-list table tbody tr {
+ width: 100%;
+ }
+
-