customers_stats.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. /**
  3. * 客户统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_customers.php';
  8. // 检查登录状态
  9. if (!isset($_SESSION['employee_id'])) {
  10. checkLogin();
  11. }
  12. // 获取日期范围参数
  13. $date_params = getDateRangeParams();
  14. $start_date = $date_params['start_date_sql'];
  15. $end_date = $date_params['end_date_sql'];
  16. $date_range = $date_params['date_range'];
  17. $period = $date_params['period'];
  18. // 页面头部
  19. include('statistics_header.php');
  20. ?>
  21. <div class="container">
  22. <div class="page-header">
  23. <h1 class="page-title">客户统计分析</h1>
  24. </div>
  25. <!-- 日期筛选 -->
  26. <div class="filter-form">
  27. <form method="get" class="filter-form-inline">
  28. <div class="form-group">
  29. <label for="date_range">选择日期范围</label>
  30. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  31. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  32. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  33. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  34. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  35. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  36. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  37. </select>
  38. </div>
  39. <div class="form-group custom-date-inputs" id="custom_start_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  40. <label for="start_date">开始日期</label>
  41. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  42. </div>
  43. <div class="form-group custom-date-inputs" id="custom_end_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  44. <label for="end_date">结束日期</label>
  45. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  46. </div>
  47. <div class="form-group">
  48. <button type="submit" class="btn">应用筛选</button>
  49. </div>
  50. </form>
  51. </div>
  52. <div class="stats-grid">
  53. <!-- 客户类型分布 -->
  54. <div class="stat-card">
  55. <?php
  56. $customer_type_result = getCustomerTypeDistribution($conn);
  57. $type_labels = [];
  58. $type_data = [];
  59. while ($row = $customer_type_result->fetch_assoc()) {
  60. $type_labels[] = $row['businessType'];
  61. $type_data[] = $row['customer_count'];
  62. }
  63. renderCustomerTypeChart($type_labels, $type_data);
  64. ?>
  65. </div>
  66. <!-- 成交阶段分布 -->
  67. <div class="stat-card">
  68. <?php
  69. $deal_stage_result = getDealStageDistribution($conn);
  70. $stage_labels = [];
  71. $stage_data = [];
  72. while ($row = $deal_stage_result->fetch_assoc()) {
  73. $stage_labels[] = $row['stage_name'];
  74. $stage_data[] = $row['customer_count'];
  75. }
  76. renderDealStageChart($stage_labels, $stage_data);
  77. ?>
  78. </div>
  79. </div>
  80. <!-- 客户增长趋势 -->
  81. <div class="chart-container">
  82. <?php
  83. $growth_result = getCustomerGrowthTrend($conn);
  84. $growth_labels = [];
  85. $growth_data = [];
  86. while ($row = $growth_result->fetch_assoc()) {
  87. $growth_labels[] = $row['month'];
  88. $growth_data[] = $row['new_customers'];
  89. }
  90. renderCustomerGrowthChart($growth_labels, $growth_data);
  91. ?>
  92. </div>
  93. <!-- 新老客户分析 -->
  94. <div class="chart-container">
  95. <?php
  96. $new_vs_returning = getNewVsReturningCustomerOrders($conn, $start_date, $end_date);
  97. renderNewVsReturningCustomersChart($new_vs_returning);
  98. ?>
  99. </div>
  100. </div>
  101. <script>
  102. function toggleCustomDates() {
  103. const dateRange = document.getElementById('date_range').value;
  104. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  105. if (dateRange === 'custom') {
  106. customDateInputs.forEach(el => el.style.display = 'inline-block');
  107. } else {
  108. customDateInputs.forEach(el => el.style.display = 'none');
  109. }
  110. }
  111. </script>
  112. <?php
  113. // 页面底部
  114. include('statistics_footer.php');
  115. ?>