File size: 23,955 Bytes
bcbfd24 67bc3c7 bcbfd24 cffbae8 67bc3c7 bcbfd24 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 bcbfd24 67bc3c7 cffbae8 67bc3c7 bcbfd24 67bc3c7 bcbfd24 cffbae8 67bc3c7 bcbfd24 67bc3c7 cffbae8 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 cffbae8 67bc3c7 bcbfd24 cffbae8 67bc3c7 cffbae8 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 bcbfd24 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 cffbae8 67bc3c7 bcbfd24 67bc3c7 bcbfd24 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>苹果冷链库存分析与风险管理</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.3/dist/echarts.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.map-container {
height: 400px;
background-color: #f8fafc;
border-radius: 0.5rem;
position: relative;
overflow: hidden;
}
.map-tooltip {
position: absolute;
background: white;
padding: 8px 12px;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
font-size: 12px;
z-index: 10;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s;
}
.risk-dot {
position: absolute;
width: 12px;
height: 12px;
border-radius: 50%;
transform: translate(-6px, -6px);
cursor: pointer;
}
.risk-dot:hover {
transform: translate(-6px, -6px) scale(1.5);
}
.chart-container {
min-height: 300px;
}
.table-container {
max-height: 300px;
overflow-y: auto;
}
.table-container::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.table-container::-webkit-scrollbar-thumb {
background-color: rgba(0,0,0,0.2);
border-radius: 3px;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<div class="container mx-auto px-4 py-6">
<!-- 顶部标题和导航 -->
<div class="flex justify-between items-center mb-6">
<div>
<h1 class="text-2xl font-bold">苹果冷链库存分析与风险管理</h1>
<p class="text-gray-600">山东省冷链仓储实时监控与分析</p>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-calendar-alt mr-2 text-gray-500"></i>
<span id="current-date" class="text-sm">2023年11月15日</span>
</div>
<button class="px-3 py-1 bg-blue-100 text-blue-600 rounded-md text-sm hover:bg-blue-200 transition">
<i class="fas fa-sync-alt mr-1"></i>刷新数据
</button>
</div>
</div>
<!-- KPI卡片 -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
<!-- 当前总库存量 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-start">
<div>
<p class="text-sm text-gray-500">当前总库存量</p>
<h2 class="text-2xl font-bold mt-1">12.8 万吨</h2>
</div>
<div class="bg-green-50 text-green-600 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-arrow-up mr-1"></i>同比+5.2%
</div>
</div>
<div class="mt-3 h-2 bg-gray-100 rounded-full overflow-hidden">
<div class="h-full bg-blue-500 rounded-full" style="width: 78%"></div>
</div>
<p class="text-xs text-gray-500 mt-1">库容利用率 78%</p>
</div>
<!-- 平均库龄 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-start">
<div>
<p class="text-sm text-gray-500">平均库龄</p>
<h2 class="text-2xl font-bold mt-1">85 天</h2>
</div>
<div class="bg-yellow-50 text-yellow-600 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-arrow-up mr-1"></i>同比+12天
</div>
</div>
<div class="mt-3 flex justify-between text-xs text-gray-500">
<span>0天</span>
<span>180天</span>
</div>
<div class="mt-1 h-2 bg-gray-100 rounded-full overflow-hidden">
<div class="h-full bg-purple-500 rounded-full" style="width: 47%"></div>
</div>
</div>
<!-- 月度周转率 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-start">
<div>
<p class="text-sm text-gray-500">月度周转率</p>
<h2 class="text-2xl font-bold mt-1">1.2 次/月</h2>
</div>
<div class="bg-red-50 text-red-600 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-arrow-down mr-1"></i>同比-0.3次
</div>
</div>
<div class="mt-3 flex items-center">
<div class="w-4 h-4 bg-blue-500 rounded-full mr-2"></div>
<p class="text-xs text-gray-500">行业平均 1.5次/月</p>
</div>
</div>
<!-- 高风险库存占比 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-start">
<div>
<p class="text-sm text-gray-500">高风险库存占比</p>
<h2 class="text-2xl font-bold mt-1">15%</h2>
</div>
<div class="bg-red-50 text-red-600 px-2 py-1 rounded-full text-xs flex items-center">
<i class="fas fa-exclamation-triangle mr-1"></i>需关注
</div>
</div>
<div class="mt-3 relative h-4">
<div class="absolute top-0 left-0 h-full w-full bg-gray-100 rounded-full"></div>
<div class="absolute top-0 left-0 h-full bg-gradient-to-r from-green-400 via-yellow-400 to-red-500 rounded-full" style="width: 100%"></div>
<div class="absolute top-0 h-full w-0.5 bg-gray-800" style="left: 15%"></div>
</div>
<div class="mt-1 flex justify-between text-xs text-gray-500">
<span>0%</span>
<span>100%</span>
</div>
</div>
</div>
<!-- 主要图表区域 -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<!-- 地图 -->
<div class="lg:col-span-2 bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold">山东省冷链仓储分布与风险等级</h3>
<div class="flex items-center space-x-2">
<div class="flex items-center">
<div class="w-3 h-3 bg-green-500 rounded-full mr-1"></div>
<span class="text-xs">低风险</span>
</div>
<div class="flex items-center">
<div class="w-3 h-3 bg-yellow-500 rounded-full mr-1"></div>
<span class="text-xs">中风险</span>
</div>
<div class="flex items-center">
<div class="w-3 h-3 bg-red-500 rounded-full mr-1"></div>
<span class="text-xs">高风险</span>
</div>
</div>
</div>
<div class="map-container" id="shandong-map">
<div class="map-tooltip" id="map-tooltip"></div>
<!-- 这里会通过JS添加风险点 -->
</div>
</div>
<!-- 区域库存分布 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold">各区域库存分布</h3>
<select class="text-xs border border-gray-200 rounded px-2 py-1 bg-white">
<option>按库存量</option>
<option>按库龄</option>
<option>按风险等级</option>
</select>
</div>
<div class="chart-container" style="height: 300px;">
<canvas id="region-distribution-chart"></canvas>
</div>
</div>
</div>
<!-- 底部图表区域 -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- 库存量与周转率趋势 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold">库存量与周转率趋势 (过去12个月)</h3>
<div class="flex space-x-2">
<button class="px-2 py-1 bg-blue-50 text-blue-600 rounded text-xs">库存量</button>
<button class="px-2 py-1 bg-gray-100 text-gray-600 rounded text-xs">周转率</button>
</div>
</div>
<div class="chart-container">
<canvas id="inventory-trend-chart"></canvas>
</div>
</div>
<!-- 高风险库存预警列表 -->
<div class="bg-white p-4 rounded-lg shadow-sm border border-gray-100">
<div class="flex justify-between items-center mb-4">
<h3 class="font-semibold">高风险库存预警列表</h3>
<button class="text-xs text-blue-600 hover:text-blue-800 flex items-center">
<i class="fas fa-download mr-1"></i>导出报告
</button>
</div>
<div class="table-container">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">冷库名称</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">批次号</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">品种等级</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">库龄(天)</th>
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">建议操作</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr class="hover:bg-gray-50">
<td class="px-4 py-3 whitespace-nowrap text-sm">烟台福山冷库</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">APL-2023-0456</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">特级富士</td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-red-600 font-medium">156</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">
<span class="px-2 py-1 bg-red-100 text-red-800 rounded-full text-xs">紧急出库</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-4 py-3 whitespace-nowrap text-sm">青岛保税冷库</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">APL-2023-0789</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">一级红富士</td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-red-600 font-medium">142</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">
<span class="px-2 py-1 bg-red-100 text-red-800 rounded-full text-xs">紧急出库</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-4 py-3 whitespace-nowrap text-sm">威海荣成冷库</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">APL-2023-0321</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">二级国光</td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-yellow-600 font-medium">128</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">
<span class="px-2 py-1 bg-yellow-100 text-yellow-800 rounded-full text-xs">优先销售</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-4 py-3 whitespace-nowrap text-sm">临沂兰山冷库</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">APL-2023-0678</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">一级嘎啦</td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-yellow-600 font-medium">118</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">
<span class="px-2 py-1 bg-yellow-100 text-yellow-800 rounded-full text-xs">优先销售</span>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-4 py-3 whitespace-nowrap text-sm">潍坊寒亭冷库</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">APL-2023-0123</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">特级富士</td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-red-600 font-medium">165</td>
<td class="px-4 py-3 whitespace-nowrap text-sm">
<span class="px-2 py-1 bg-red-100 text-red-800 rounded-full text-xs">紧急出库</span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script>
// 设置当前日期
document.getElementById('current-date').textContent = new Date().toLocaleDateString('zh-CN', {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'long'
});
// 区域库存分布图表
const regionCtx = document.getElementById('region-distribution-chart').getContext('2d');
const regionChart = new Chart(regionCtx, {
type: 'bar',
data: {
labels: ['烟台', '青岛', '威海', '临沂', '潍坊'],
datasets: [{
label: '库存量 (万吨)',
data: [4.8, 3.5, 2.1, 1.6, 1.2],
backgroundColor: [
'rgba(75, 192, 192, 0.7)',
'rgba(54, 162, 235, 0.7)',
'rgba(153, 102, 255, 0.7)',
'rgba(255, 159, 64, 0.7)',
'rgba(255, 99, 132, 0.7)',
'rgba(201, 203, 207, 0.7)',
],
borderColor: [
'rgba(75, 192, 192, 1)',
'rgba(54, 162, 235, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)',
'rgba(255, 99, 132, 1)',
'rgba(201, 203, 207, 1)',
],
borderWidth: 1
}]
},
options: {
indexAxis: 'y',
responsive: true,
maintainAspectRatio: true,
aspectRatio: 1.5,
plugins: {
legend: {
display: false
},
tooltip: {
callbacks: {
label: function(context) {
return context.parsed.x.toFixed(1) + '万吨 (' +
Math.round(context.parsed.x / 12.8 * 100) + '%)';
}
}
}
},
scales: {
x: {
beginAtZero: true,
grid: {
display: true,
color: 'rgba(0, 0, 0, 0.05)'
},
ticks: {
callback: function(value) {
return value + '万吨';
}
}
},
y: {
grid: {
display: true,
color: 'rgba(0, 0, 0, 0.05)'
}
}
}
}
});
// 库存量与周转率趋势图表
const trendCtx = document.getElementById('inventory-trend-chart').getContext('2d');
const trendChart = new Chart(trendCtx, {
type: 'line',
data: {
labels: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
datasets: [
{
label: '库存量 (万吨)',
data: [8.2, 9.5, 10.1, 11.3, 12.0, 12.5, 13.2, 12.8, 11.5, 10.8, 12.8, 13.5],
borderColor: 'rgba(54, 162, 235, 1)',
backgroundColor: 'rgba(54, 162, 235, 0.1)',
borderWidth: 2,
tension: 0.3,
yAxisID: 'y'
},
{
label: '周转率 (次/月)',
data: [1.5, 1.4, 1.3, 1.2, 1.1, 1.0, 1.2, 1.3, 1.4, 1.3, 1.2, 1.1],
borderColor: 'rgba(255, 159, 64, 1)',
backgroundColor: 'rgba(255, 159, 64, 0.1)',
borderWidth: 2,
tension: 0.3,
yAxisID: 'y1'
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
}
},
scales: {
y: {
type: 'linear',
display: true,
position: 'left',
title: {
display: true,
text: '库存量 (万吨)'
}
},
y1: {
type: 'linear',
display: true,
position: 'right',
grid: {
drawOnChartArea: false,
},
title: {
display: true,
text: '周转率 (次/月)'
}
}
}
}
});
// 山东省地图模拟
const mapContainer = document.getElementById('shandong-map');
const tooltip = document.getElementById('map-tooltip');
// 模拟冷库位置数据
const coldStorages = [
{ name: "烟台福山冷库", x: 30, y: 80, risk: "high", inventory: "4.2万吨", age: "156天" },
{ name: "青岛保税冷库", x: 20, y: 40, risk: "high", inventory: "3.1万吨", age: "142天" },
{ name: "威海荣成冷库", x: 60, y: 90, risk: "medium", inventory: "1.8万吨", age: "128天" },
{ name: "临沂兰山冷库", x: 40, y: 20, risk: "medium", inventory: "1.2万吨", age: "118天" },
{ name: "潍坊寒亭冷库", x: 50, y: 50, risk: "high", inventory: "0.9万吨", age: "165天" },
{ name: "济南历城冷库", x: 35, y: 30, risk: "low", inventory: "0.7万吨", age: "65天" },
{ name: "日照岚山冷库", x: 25, y: 15, risk: "low", inventory: "0.5万吨", age: "45天" }
];
// 添加风险点到地图
coldStorages.forEach(storage => {
const dot = document.createElement('div');
dot.className = `risk-dot ${storage.risk === 'high' ? 'bg-red-500' : storage.risk === 'medium' ? 'bg-yellow-500' : 'bg-green-500'}`;
dot.style.left = `${storage.x}%`;
dot.style.top = `${storage.y}%`;
dot.addEventListener('mouseenter', () => {
tooltip.innerHTML = `
<div class="font-semibold">${storage.name}</div>
<div class="text-xs mt-1">库存: ${storage.inventory}</div>
<div class="text-xs">库龄: ${storage.age}</div>
<div class="text-xs mt-1 ${storage.risk === 'high' ? 'text-red-600' : storage.risk === 'medium' ? 'text-yellow-600' : 'text-green-600'}">
${storage.risk === 'high' ? '高风险' : storage.risk === 'medium' ? '中风险' : '低风险'}
</div>
`;
tooltip.style.left = `${storage.x + 2}%`;
tooltip.style.top = `${storage.y + 2}%`;
tooltip.style.opacity = '1';
});
dot.addEventListener('mouseleave', () => {
tooltip.style.opacity = '0';
});
mapContainer.appendChild(dot);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=maomaobj/apple2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |