@@ -43,6 +43,13 @@ table{ | |||||
justify-content: space-between; | justify-content: space-between; | ||||
cursor: pointer; | cursor: pointer; | ||||
padding: 15px 0; | padding: 15px 0; | ||||
border-top: 1px solid transparent; | |||||
border-left: 1px solid transparent; | |||||
border-right: 1px solid transparent; | |||||
} | |||||
.newList ul li:hover{ | |||||
border: 1px solid #d0d0d0; | |||||
} | } | ||||
.newList #announcementInformationContent li p:nth-child(1){ | .newList #announcementInformationContent li p:nth-child(1){ | ||||
@@ -9,7 +9,7 @@ | |||||
padding: 4px 10px; | padding: 4px 10px; | ||||
} | } | ||||
.tableList input[type='button']:hover { | |||||
.tableList table tr:hover input[type='button'] { | |||||
color: #FFFFFF !important; | color: #FFFFFF !important; | ||||
border-color: var(--color) !important; | border-color: var(--color) !important; | ||||
background-color: var(--color) !important; | background-color: var(--color) !important; | ||||
@@ -20,5 +20,21 @@ | |||||
} | } | ||||
.tableList table tr td{ | .tableList table tr td{ | ||||
border-top: 1px dashed transparent; | |||||
border-bottom: 1px dashed #d0d0d0; | border-bottom: 1px dashed #d0d0d0; | ||||
} | } | ||||
.tableList table tr{ | |||||
cursor: pointer; | |||||
} | |||||
.tableList table tr:hover td{ | |||||
border-top: 1px solid #d0d0d0; | |||||
border-bottom: 1px solid #d0d0d0; | |||||
} | |||||
.tableList table tr:hover td:first-child{ | |||||
border-left: 1px solid #d0d0d0; | |||||
} | |||||
.tableList table tr:hover td:last-child{ | |||||
border-right: 1px solid #d0d0d0; | |||||
} |
@@ -844,14 +844,14 @@ input::-webkit-inner-spin-button { | |||||
width: 5%; | width: 5%; | ||||
} | } | ||||
.centerLeft .centerLeft-center .tableList table tr:hover td{ | .centerLeft .centerLeft-center .tableList table tr:hover td{ | ||||
border-top: 1px solid #8a8eb3; | |||||
border-bottom: 1px solid #8a8eb3; | |||||
border-top: 1px solid #d0d0d0; | |||||
border-bottom: 1px solid #d0d0d0; | |||||
} | } | ||||
.centerLeft .centerLeft-center .tableList table tr:hover td:first-child{ | .centerLeft .centerLeft-center .tableList table tr:hover td:first-child{ | ||||
border-left: 1px solid #8a8eb3; | |||||
border-left: 1px solid #d0d0d0; | |||||
} | } | ||||
.centerLeft .centerLeft-center .tableList table tr:hover td:last-child{ | .centerLeft .centerLeft-center .tableList table tr:hover td:last-child{ | ||||
border-right: 1px solid #8a8eb3; | |||||
border-right: 1px solid #d0d0d0; | |||||
} | } | ||||
.color-d7d7d7{ | .color-d7d7d7{ | ||||
@@ -204,7 +204,7 @@ | |||||
<div class="tableList" style="height: auto; overflow-y: none; width: 1200px;"> | <div class="tableList" style="height: auto; overflow-y: none; width: 1200px;"> | ||||
<script id="biddingInformationData" type="text/html"> | <script id="biddingInformationData" type="text/html"> | ||||
{{each biddingInformationList as value i}} | {{each biddingInformationList as value i}} | ||||
<tr> | |||||
<tr onclick="goDetail({{value.id}})"> | |||||
<td style="text-align: left;padding-left: 2%;" title="{{value.projectName}}">{{value.projectName}}</td> | <td style="text-align: left;padding-left: 2%;" title="{{value.projectName}}">{{value.projectName}}</td> | ||||
<td>{{value.biddingType}}</td> | <td>{{value.biddingType}}</td> | ||||
<td>{{value.signupStopTime}}</td> | <td>{{value.signupStopTime}}</td> | ||||
@@ -231,7 +231,7 @@ | |||||
</script> | </script> | ||||
<!-- now-row 红色 --> | <!-- now-row 红色 --> | ||||
<!-- notStart-row 绿色 --> | <!-- notStart-row 绿色 --> | ||||
<table width="100%;" id="biddingInformationContent" style="table-layout: fixed;"></table> | |||||
<table width="100%;" cellspacing="0" cellpadding="0" id="biddingInformationContent" style="table-layout: fixed;"></table> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="pageNum"> | <div class="pageNum"> | ||||