Explorar el Código

后台店铺管理—店铺信息-寄售协议操作记录修改样式。

ouxq hace 8 años
padre
commit
30c48f4d56

+ 42 - 19
src/main/webapp/resources/view/admin/store/fragments/enterprise_info.html

@@ -174,6 +174,25 @@
 		border: none;
 		background: #3ba9e9;
 	}
+	/*表格样式*/
+	.application-tab table tbody tr{
+		height: 50px;
+	}
+	.application-tab table tr th,.application-tab table tr td{
+		border: #cfedfe 1px solid;
+		text-align: center;
+		vertical-align: middle;
+	}
+	.application-tab .table-bordered{
+		border-top: #cfedfe 1px solid;
+	}
+	.application-tab table tr th{
+		background: #cfedfe;
+		height: 35px;
+	}
+	.application-tab table tbody tr:hover{
+		background: #e4f3fc;
+	}
 </style>
 <div class="enterprise-info" ng-controller="EnterpriseInfoCtrl">
 	<h2 ng-bind="store.enterprise.enName">深圳市优软商城科技有限公司</h2>
@@ -255,26 +274,30 @@
 				</ul>
 			</div>
 		</div>
-	</div>
-	<!-- 企业寄售协议操作记录 -->
-	<div ng-if="showRecords" style="width: 98%;margin: 0 auto;">
-		<div class="row">
-			<div class="col-md-12">
-				<div>
-					企业寄售协议操作记录
+		<!-- 企业寄售协议操作记录 -->
+		<div ng-if="showRecords" class="application-tab" style="width: 98%;margin: 0 auto;">
+			<div class="row" style="width: 100%">
+				<div class="col-md-12">
+					<div style="width: 100%;line-height: 50px;font-size: 16px;">
+						企业寄售协议操作记录
+					</div>
+					<table class="table" ng-table="recordsTableParams">
+						<thead>
+						<tr>
+							<th>序号</th>
+							<th>操作人</th>
+							<th>操作时间</th>
+						</tr>
+						</thead>
+						<tbody>
+						<tr ng-repeat="record in $data">
+							<td style="text-align: center;" ng-bind="(recordsTableParams.page() - 1) * recordsTableParams.count() + $index + 1"></td>
+							<td style="text-align: center;" ng-bind="record.userName"></td>
+							<td style="text-align: center;" ng-bind="record.operateTime | date: 'yyyy-MM-dd HH:mm:ss'"></td>
+						</tr>
+						</tbody>
+					</table>
 				</div>
-				<table class="table" ng-table="recordsTableParams">
-					<tr>
-						<th>序号</th>
-						<th>操作人</th>
-						<th>操作时间</th>
-					</tr>
-					<tr ng-repeat="record in $data">
-						<td style="text-align: center;" ng-bind="(recordsTableParams.page() - 1) * recordsTableParams.count() + $index + 1"></td>
-						<td style="text-align: center;" ng-bind="record.userName"></td>
-						<td style="text-align: center;" ng-bind="record.operateTime | date: 'yyyy-MM-dd HH:mm:ss'"></td>
-					</tr>
-				</table>
 			</div>
 		</div>
 	</div>