123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?php
- /**
- * 客户统计分析展示页面
- */
- require_once 'conn.php';
- require_once 'statistics_utils.php';
- require_once 'statistics_customers.php';
- // 检查登录状态
- if (!isset($_SESSION['employee_id'])) {
- checkLogin();
- }
- // 获取日期范围参数
- $date_params = getDateRangeParams();
- $start_date = $date_params['start_date_sql'];
- $end_date = $date_params['end_date_sql'];
- $date_range = $date_params['date_range'];
- $period = $date_params['period'];
- // 页面头部
- include('header.php');
- ?>
- <div class="container-fluid px-4">
- <h1 class="mt-4">客户统计分析</h1>
- <ol class="breadcrumb mb-4">
- <li class="breadcrumb-item"><a href="index.php">控制台</a></li>
- <li class="breadcrumb-item active">客户统计</li>
- </ol>
-
- <!-- 日期筛选 -->
- <div class="card mb-4">
- <div class="card-header">
- <i class="fas fa-filter me-1"></i>
- 日期范围筛选
- </div>
- <div class="card-body">
- <form method="get" class="row g-3">
- <div class="col-md-3">
- <label for="date_range" class="form-label">选择日期范围</label>
- <select class="form-select" id="date_range" name="date_range" onchange="toggleCustomDates()">
- <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
- <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
- <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
- <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
- <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
- <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
- </select>
- </div>
- <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
- <label for="start_date" class="form-label">开始日期</label>
- <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
- </div>
- <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
- <label for="end_date" class="form-label">结束日期</label>
- <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
- </div>
- <div class="col-md-2 d-flex align-items-end">
- <button type="submit" class="btn btn-primary">应用筛选</button>
- </div>
- </form>
- </div>
- </div>
-
- <div class="row">
- <!-- 客户类型分布 -->
- <div class="col-lg-6 mb-4">
- <div class="card">
- <?php
- $customer_type_result = getCustomerTypeDistribution($conn);
- $type_labels = [];
- $type_data = [];
-
- while ($row = $customer_type_result->fetch_assoc()) {
- $type_labels[] = $row['businessType'];
- $type_data[] = $row['customer_count'];
- }
- renderCustomerTypeChart($type_labels, $type_data);
- ?>
- </div>
- </div>
-
- <!-- 成交阶段分布 -->
- <div class="col-lg-6 mb-4">
- <div class="card">
- <?php
- $deal_stage_result = getDealStageDistribution($conn);
- $stage_labels = [];
- $stage_data = [];
-
- while ($row = $deal_stage_result->fetch_assoc()) {
- $stage_labels[] = $row['stage_name'];
- $stage_data[] = $row['customer_count'];
- }
- renderDealStageChart($stage_labels, $stage_data);
- ?>
- </div>
- </div>
- </div>
-
- <div class="row">
- <!-- 客户增长趋势 -->
- <div class="col-lg-12 mb-4">
- <div class="card">
- <?php
- $growth_result = getCustomerGrowthTrend($conn);
- $growth_labels = [];
- $growth_data = [];
-
- while ($row = $growth_result->fetch_assoc()) {
- $growth_labels[] = $row['month'];
- $growth_data[] = $row['new_customers'];
- }
- renderCustomerGrowthChart($growth_labels, $growth_data);
- ?>
- </div>
- </div>
- </div>
-
- <div class="row">
- <!-- 新老客户分析 -->
- <div class="col-lg-12 mb-4">
- <div class="card">
- <?php
- $new_vs_returning = getNewVsReturningCustomerOrders($conn, $start_date, $end_date);
- renderNewVsReturningCustomersChart($new_vs_returning);
- ?>
- </div>
- </div>
- </div>
- </div>
- <script>
- function toggleCustomDates() {
- const dateRange = document.getElementById('date_range').value;
- const customDates = document.querySelectorAll('.custom-date');
-
- if (dateRange === 'custom') {
- customDates.forEach(el => el.style.display = 'block');
- } else {
- customDates.forEach(el => el.style.display = 'none');
- }
- }
- </script>
- <?php
- // 页面底部
- include('footer.php');
- ?>
|