123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>统计分析</title>
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <script src="system/js/jquery-1.7.2.min.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
- <style>
- body {
- margin: 0;
- padding: 20px;
- background: #fff;
- font-family: Arial, sans-serif;
- }
- .container {
- width: 100%;
- max-width: 1200px;
- margin: 0 auto;
- }
- .page-header {
- margin-bottom: 20px;
- border-bottom: 1px solid #eee;
- padding-bottom: 10px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .page-title {
- font-size: 24px;
- font-weight: bold;
- color: #333;
- margin: 0;
- }
- .export-btn {
- padding: 8px 15px;
- background: #4CAF50;
- color: white;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- text-decoration: none;
- display: inline-block;
- }
- .export-btn:hover {
- background: #45a049;
- }
- .filter-form {
- background: #f9f9f9;
- padding: 15px;
- border-radius: 5px;
- margin-bottom: 20px;
- display: flex;
- flex-wrap: wrap;
- gap: 15px;
- align-items: center;
- }
-
- .filter-form-inline {
- display: flex;
- flex-wrap: nowrap;
- align-items: flex-end;
- gap: 15px;
- width: 100%;
- }
-
- .filter-form-inline .form-group {
- margin-right: 0;
- flex: 0 0 auto;
- }
- .form-group {
- margin-right: 15px;
- }
- .form-group label {
- display: block;
- margin-bottom: 5px;
- font-weight: bold;
- }
- .form-control {
- padding: 8px;
- border: 1px solid #ddd;
- border-radius: 4px;
- min-width: 150px;
- }
- .btn {
- padding: 8px 15px;
- background: #337ab7;
- color: white;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- }
- .btn:hover {
- background: #286090;
- }
- .stats-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
- gap: 20px;
- margin-bottom: 20px;
- }
- .stat-card {
- background: white;
- border-radius: 5px;
- box-shadow: 0 2px 4px rgba(0,0,0,0.1);
- padding: 20px;
- }
- .stat-card h3 {
- margin-top: 0;
- color: #555;
- font-size: 16px;
- border-bottom: 1px solid #eee;
- padding-bottom: 10px;
- }
- .stat-value {
- font-size: 24px;
- font-weight: bold;
- color: #333;
- margin: 15px 0;
- }
- .chart-container {
- margin-bottom: 30px;
- background: white;
- border-radius: 5px;
- box-shadow: 0 2px 4px rgba(0,0,0,0.1);
- padding: 20px;
- }
- .chart-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15px;
- }
- .chart-title {
- font-size: 18px;
- font-weight: bold;
- color: #333;
- margin: 0;
- }
-
- .chart-row {
- display: flex;
- flex-wrap: wrap;
- }
-
- .chart-column {
- flex: 0 0 50%;
- max-width: 50%;
- padding: 0 10px;
- }
- .data-table {
- width: 100%;
- border-collapse: collapse;
- margin-top: 20px;
- }
- .data-table th, .data-table td {
- padding: 10px;
- text-align: left;
- border-bottom: 1px solid #eee;
- }
- .data-table th {
- background: #f5f5f5;
- font-weight: bold;
- }
- .data-table tr:hover {
- background: #f9f9f9;
- }
- .custom-date-inputs {
- display: none;
- }
- #date_range[value="custom"]:checked ~ .custom-date-inputs {
- display: block;
- }
- .download-btn {
- padding: 5px 10px;
- background: #4CAF50;
- color: white;
- border: none;
- border-radius: 3px;
- font-size: 14px;
- cursor: pointer;
- }
- .download-btn:hover {
- background: #45a049;
- }
- </style>
- </head>
- <body>
- <div class="container">
|