statistics_header.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>统计分析</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <script src="system/js/jquery-1.7.2.min.js"></script>
  8. <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
  9. <style>
  10. body {
  11. margin: 0;
  12. padding: 20px;
  13. background: #fff;
  14. font-family: Arial, sans-serif;
  15. }
  16. .container {
  17. width: 100%;
  18. max-width: 1200px;
  19. margin: 0 auto;
  20. }
  21. .page-header {
  22. margin-bottom: 20px;
  23. border-bottom: 1px solid #eee;
  24. padding-bottom: 10px;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. }
  29. .page-title {
  30. font-size: 24px;
  31. font-weight: bold;
  32. color: #333;
  33. margin: 0;
  34. }
  35. .export-btn {
  36. padding: 8px 15px;
  37. background: #4CAF50;
  38. color: white;
  39. border: none;
  40. border-radius: 4px;
  41. cursor: pointer;
  42. text-decoration: none;
  43. display: inline-block;
  44. }
  45. .export-btn:hover {
  46. background: #45a049;
  47. }
  48. .filter-form {
  49. background: #f9f9f9;
  50. padding: 15px;
  51. border-radius: 5px;
  52. margin-bottom: 20px;
  53. display: flex;
  54. flex-wrap: wrap;
  55. gap: 15px;
  56. align-items: center;
  57. }
  58. .filter-form-inline {
  59. display: flex;
  60. flex-wrap: nowrap;
  61. align-items: flex-end;
  62. gap: 15px;
  63. width: 100%;
  64. }
  65. .filter-form-inline .form-group {
  66. margin-right: 0;
  67. flex: 0 0 auto;
  68. }
  69. .form-group {
  70. margin-right: 15px;
  71. }
  72. .form-group label {
  73. display: block;
  74. margin-bottom: 5px;
  75. font-weight: bold;
  76. }
  77. .form-control {
  78. padding: 8px;
  79. border: 1px solid #ddd;
  80. border-radius: 4px;
  81. min-width: 150px;
  82. }
  83. .btn {
  84. padding: 8px 15px;
  85. background: #337ab7;
  86. color: white;
  87. border: none;
  88. border-radius: 4px;
  89. cursor: pointer;
  90. }
  91. .btn:hover {
  92. background: #286090;
  93. }
  94. .stats-grid {
  95. display: grid;
  96. grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
  97. gap: 20px;
  98. margin-bottom: 20px;
  99. }
  100. .stat-card {
  101. background: white;
  102. border-radius: 5px;
  103. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  104. padding: 20px;
  105. }
  106. .stat-card h3 {
  107. margin-top: 0;
  108. color: #555;
  109. font-size: 16px;
  110. border-bottom: 1px solid #eee;
  111. padding-bottom: 10px;
  112. }
  113. .stat-value {
  114. font-size: 24px;
  115. font-weight: bold;
  116. color: #333;
  117. margin: 15px 0;
  118. }
  119. .chart-container {
  120. margin-bottom: 30px;
  121. background: white;
  122. border-radius: 5px;
  123. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  124. padding: 20px;
  125. }
  126. .chart-header {
  127. display: flex;
  128. justify-content: space-between;
  129. align-items: center;
  130. margin-bottom: 15px;
  131. }
  132. .chart-title {
  133. font-size: 18px;
  134. font-weight: bold;
  135. color: #333;
  136. margin: 0;
  137. }
  138. .chart-row {
  139. display: flex;
  140. flex-wrap: wrap;
  141. }
  142. .chart-column {
  143. flex: 0 0 50%;
  144. max-width: 50%;
  145. padding: 0 10px;
  146. }
  147. .data-table {
  148. width: 100%;
  149. border-collapse: collapse;
  150. margin-top: 20px;
  151. }
  152. .data-table th, .data-table td {
  153. padding: 10px;
  154. text-align: left;
  155. border-bottom: 1px solid #eee;
  156. }
  157. .data-table th {
  158. background: #f5f5f5;
  159. font-weight: bold;
  160. }
  161. .data-table tr:hover {
  162. background: #f9f9f9;
  163. }
  164. .custom-date-inputs {
  165. display: none;
  166. }
  167. #date_range[value="custom"]:checked ~ .custom-date-inputs {
  168. display: block;
  169. }
  170. .download-btn {
  171. padding: 5px 10px;
  172. background: #4CAF50;
  173. color: white;
  174. border: none;
  175. border-radius: 3px;
  176. font-size: 14px;
  177. cursor: pointer;
  178. }
  179. .download-btn:hover {
  180. background: #45a049;
  181. }
  182. /* 关键指标样式 */
  183. .key-metrics-section {
  184. margin-bottom: 30px;
  185. }
  186. .section-title {
  187. margin-bottom: 15px;
  188. }
  189. .section-title h2 {
  190. font-size: 20px;
  191. font-weight: bold;
  192. color: #333;
  193. margin: 0;
  194. }
  195. .stats-card-container {
  196. display: flex;
  197. flex-wrap: wrap;
  198. gap: 20px;
  199. justify-content: space-between;
  200. }
  201. .stats-card {
  202. background: white;
  203. border-radius: 5px;
  204. box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  205. padding: 15px;
  206. min-width: 180px;
  207. flex: 1;
  208. transition: all 0.3s ease;
  209. }
  210. .stats-card:hover {
  211. transform: translateY(-3px);
  212. box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  213. }
  214. .stats-card-header {
  215. margin-bottom: 10px;
  216. }
  217. .stats-card-header h3 {
  218. font-size: 16px;
  219. font-weight: bold;
  220. color: #555;
  221. margin: 0;
  222. }
  223. .stats-card-body {
  224. text-align: center;
  225. }
  226. .stats-card-value {
  227. font-size: 28px;
  228. font-weight: bold;
  229. color: #2196F3;
  230. }
  231. .stats-card-subtitle {
  232. font-size: 14px;
  233. color: #777;
  234. margin-top: 5px;
  235. }
  236. /* 添加客户价值分布的子值样式 */
  237. .stat-sub-value {
  238. display: block;
  239. font-size: 14px;
  240. color: #4CAF50;
  241. margin-top: 3px;
  242. }
  243. /* 转化率样式 */
  244. .stat-conversion {
  245. display: block;
  246. font-size: 13px;
  247. color: #FF5722;
  248. margin-top: 3px;
  249. font-style: italic;
  250. }
  251. </style>
  252. </head>
  253. <body>
  254. <div class="container">