customers_stats.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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('header.php');
  20. ?>
  21. <div class="container-fluid px-4">
  22. <h1 class="mt-4">客户统计分析</h1>
  23. <ol class="breadcrumb mb-4">
  24. <li class="breadcrumb-item"><a href="index.php">控制台</a></li>
  25. <li class="breadcrumb-item active">客户统计</li>
  26. </ol>
  27. <!-- 日期筛选 -->
  28. <div class="card mb-4">
  29. <div class="card-header">
  30. <i class="fas fa-filter me-1"></i>
  31. 日期范围筛选
  32. </div>
  33. <div class="card-body">
  34. <form method="get" class="row g-3">
  35. <div class="col-md-3">
  36. <label for="date_range" class="form-label">选择日期范围</label>
  37. <select class="form-select" id="date_range" name="date_range" onchange="toggleCustomDates()">
  38. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  39. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  40. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  41. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  42. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  43. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  44. </select>
  45. </div>
  46. <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  47. <label for="start_date" class="form-label">开始日期</label>
  48. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  49. </div>
  50. <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  51. <label for="end_date" class="form-label">结束日期</label>
  52. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  53. </div>
  54. <div class="col-md-2 d-flex align-items-end">
  55. <button type="submit" class="btn btn-primary">应用筛选</button>
  56. </div>
  57. </form>
  58. </div>
  59. </div>
  60. <div class="row">
  61. <!-- 客户类型分布 -->
  62. <div class="col-lg-6 mb-4">
  63. <div class="card">
  64. <?php
  65. $customer_type_result = getCustomerTypeDistribution($conn);
  66. $type_labels = [];
  67. $type_data = [];
  68. while ($row = $customer_type_result->fetch_assoc()) {
  69. $type_labels[] = $row['businessType'];
  70. $type_data[] = $row['customer_count'];
  71. }
  72. renderCustomerTypeChart($type_labels, $type_data);
  73. ?>
  74. </div>
  75. </div>
  76. <!-- 成交阶段分布 -->
  77. <div class="col-lg-6 mb-4">
  78. <div class="card">
  79. <?php
  80. $deal_stage_result = getDealStageDistribution($conn);
  81. $stage_labels = [];
  82. $stage_data = [];
  83. while ($row = $deal_stage_result->fetch_assoc()) {
  84. $stage_labels[] = $row['stage_name'];
  85. $stage_data[] = $row['customer_count'];
  86. }
  87. renderDealStageChart($stage_labels, $stage_data);
  88. ?>
  89. </div>
  90. </div>
  91. </div>
  92. <div class="row">
  93. <!-- 客户增长趋势 -->
  94. <div class="col-lg-12 mb-4">
  95. <div class="card">
  96. <?php
  97. $growth_result = getCustomerGrowthTrend($conn);
  98. $growth_labels = [];
  99. $growth_data = [];
  100. while ($row = $growth_result->fetch_assoc()) {
  101. $growth_labels[] = $row['month'];
  102. $growth_data[] = $row['new_customers'];
  103. }
  104. renderCustomerGrowthChart($growth_labels, $growth_data);
  105. ?>
  106. </div>
  107. </div>
  108. </div>
  109. <div class="row">
  110. <!-- 新老客户分析 -->
  111. <div class="col-lg-12 mb-4">
  112. <div class="card">
  113. <?php
  114. $new_vs_returning = getNewVsReturningCustomerOrders($conn, $start_date, $end_date);
  115. renderNewVsReturningCustomersChart($new_vs_returning);
  116. ?>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. <script>
  122. function toggleCustomDates() {
  123. const dateRange = document.getElementById('date_range').value;
  124. const customDates = document.querySelectorAll('.custom-date');
  125. if (dateRange === 'custom') {
  126. customDates.forEach(el => el.style.display = 'block');
  127. } else {
  128. customDates.forEach(el => el.style.display = 'none');
  129. }
  130. }
  131. </script>
  132. <?php
  133. // 页面底部
  134. include('footer.php');
  135. ?>