|
@@ -22,141 +22,117 @@ $period = $date_params['period'];
|
|
|
$product_id = isset($_GET['product_id']) ? intval($_GET['product_id']) : 0;
|
|
|
|
|
|
// 页面头部
|
|
|
-include('header.php');
|
|
|
+include('statistics_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="container">
|
|
|
+ <div class="page-header">
|
|
|
+ <h1 class="page-title">产品统计分析</h1>
|
|
|
+ </div>
|
|
|
|
|
|
<!-- 日期筛选 -->
|
|
|
- <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-2 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-2 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-3">
|
|
|
- <label for="period" class="form-label">时间粒度</label>
|
|
|
- <select class="form-select" id="period" name="period">
|
|
|
- <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
|
|
|
- <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
|
|
|
- <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="col-md-2 d-flex align-items-end">
|
|
|
- <button type="submit" class="btn btn-primary">应用筛选</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
+ <div class="filter-form">
|
|
|
+ <form method="get" class="filter-form-inline">
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="date_range">选择日期范围</label>
|
|
|
+ <select class="form-control" 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="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
|
|
|
+ <label for="start_date">开始日期</label>
|
|
|
+ <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
|
|
|
+ </div>
|
|
|
+ <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
|
|
|
+ <label for="end_date">结束日期</label>
|
|
|
+ <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="period">时间粒度</label>
|
|
|
+ <select class="form-control" id="period" name="period">
|
|
|
+ <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
|
|
|
+ <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
|
|
|
+ <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <button type="submit" class="btn">应用筛选</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
</div>
|
|
|
|
|
|
- <div class="row">
|
|
|
- <!-- 热门产品 -->
|
|
|
- <div class="col-lg-12 mb-4">
|
|
|
- <div class="card">
|
|
|
- <?php
|
|
|
- $top_products = getTopProducts($conn, $start_date, $end_date, 10);
|
|
|
- renderTopProductsTable($top_products);
|
|
|
- ?>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <!-- 热门产品 -->
|
|
|
+ <div class="chart-container">
|
|
|
+ <?php
|
|
|
+ $top_products = getTopProducts($conn, $start_date, $end_date, 10);
|
|
|
+ renderTopProductsTable($top_products);
|
|
|
+ ?>
|
|
|
</div>
|
|
|
|
|
|
- <div class="row">
|
|
|
- <!-- 产品销售趋势 -->
|
|
|
- <div class="col-lg-12 mb-4">
|
|
|
- <div class="card">
|
|
|
- <?php
|
|
|
- $product_trends = getProductSalesTrend($conn, $start_date, $end_date, $product_id, $period);
|
|
|
-
|
|
|
- $time_labels = [];
|
|
|
- $quantities = [];
|
|
|
- $revenues = [];
|
|
|
-
|
|
|
- while ($row = $product_trends->fetch_assoc()) {
|
|
|
- $time_labels[] = $row['time_period'];
|
|
|
- $quantities[] = $row['total_quantity'];
|
|
|
- $revenues[] = $row['total_revenue'];
|
|
|
- }
|
|
|
- renderProductSalesTrendChart($time_labels, $quantities, $revenues);
|
|
|
- ?>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <!-- 产品销售趋势 -->
|
|
|
+ <div class="chart-container">
|
|
|
+ <?php
|
|
|
+ $product_trends = getProductSalesTrend($conn, $start_date, $end_date, $product_id, $period);
|
|
|
+
|
|
|
+ $time_labels = [];
|
|
|
+ $quantities = [];
|
|
|
+ $revenues = [];
|
|
|
+
|
|
|
+ while ($row = $product_trends->fetch_assoc()) {
|
|
|
+ $time_labels[] = $row['time_period'];
|
|
|
+ $quantities[] = $row['total_quantity'];
|
|
|
+ $revenues[] = $row['total_revenue'];
|
|
|
+ }
|
|
|
+ renderProductSalesTrendChart($time_labels, $quantities, $revenues);
|
|
|
+ ?>
|
|
|
</div>
|
|
|
|
|
|
- <div class="row">
|
|
|
- <!-- 产品类别销售分布 -->
|
|
|
- <div class="col-lg-12 mb-4">
|
|
|
- <div class="card">
|
|
|
- <?php
|
|
|
- $category_sales = getProductCategorySales($conn, $start_date, $end_date);
|
|
|
-
|
|
|
- $categories = [];
|
|
|
- $category_quantities = [];
|
|
|
- $category_revenues = [];
|
|
|
-
|
|
|
- while ($row = $category_sales->fetch_assoc()) {
|
|
|
- $categories[] = $row['category_name'];
|
|
|
- $category_quantities[] = $row['total_quantity'];
|
|
|
- $category_revenues[] = $row['total_revenue'];
|
|
|
- }
|
|
|
- renderProductCategorySalesChart($categories, $category_quantities, $category_revenues);
|
|
|
- ?>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <!-- 产品类别销售分布 -->
|
|
|
+ <div class="chart-container">
|
|
|
+ <?php
|
|
|
+ $category_sales = getProductCategorySales($conn, $start_date, $end_date);
|
|
|
+
|
|
|
+ $categories = [];
|
|
|
+ $category_quantities = [];
|
|
|
+ $category_revenues = [];
|
|
|
+
|
|
|
+ while ($row = $category_sales->fetch_assoc()) {
|
|
|
+ $categories[] = $row['category_name'];
|
|
|
+ $category_quantities[] = $row['total_quantity'];
|
|
|
+ $category_revenues[] = $row['total_revenue'];
|
|
|
+ }
|
|
|
+ renderProductCategorySalesChart($categories, $category_quantities, $category_revenues);
|
|
|
+ ?>
|
|
|
</div>
|
|
|
|
|
|
- <div class="row">
|
|
|
- <!-- 产品地区关联分析 -->
|
|
|
- <div class="col-lg-12 mb-4">
|
|
|
- <div class="card">
|
|
|
- <?php
|
|
|
- $product_region_data = getProductRegionAnalysis($conn, $start_date, $end_date);
|
|
|
- renderProductRegionAnalysisTable($product_region_data);
|
|
|
- ?>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <!-- 产品地区关联分析 -->
|
|
|
+ <div class="chart-container">
|
|
|
+ <?php
|
|
|
+ $product_region_data = getProductRegionAnalysis($conn, $start_date, $end_date);
|
|
|
+ renderProductRegionAnalysisTable($product_region_data);
|
|
|
+ ?>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
function toggleCustomDates() {
|
|
|
const dateRange = document.getElementById('date_range').value;
|
|
|
- const customDates = document.querySelectorAll('.custom-date');
|
|
|
+ const customDateInputs = document.querySelectorAll('.custom-date-inputs');
|
|
|
|
|
|
if (dateRange === 'custom') {
|
|
|
- customDates.forEach(el => el.style.display = 'block');
|
|
|
+ customDateInputs.forEach(el => el.style.display = 'inline-block');
|
|
|
} else {
|
|
|
- customDates.forEach(el => el.style.display = 'none');
|
|
|
+ customDateInputs.forEach(el => el.style.display = 'none');
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<?php
|
|
|
// 页面底部
|
|
|
-include('footer.php');
|
|
|
+include('statistics_footer.php');
|
|
|
?>
|