564 lines
36 KiB
HTML
564 lines
36 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN" data-theme="night">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>AGV (自动导引运输车) - 概念深度研究</title>
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;700&family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
|
||
<style>
|
||
:root {
|
||
--glow-color-1: rgba(0, 255, 255, 0.3);
|
||
--glow-color-2: rgba(255, 0, 255, 0.3);
|
||
--glass-bg: rgba(20, 20, 40, 0.5);
|
||
--glass-border: rgba(100, 100, 200, 0.3);
|
||
}
|
||
|
||
body {
|
||
font-family: 'Exo 2', sans-serif;
|
||
background-color: #020011;
|
||
background-image:
|
||
radial-gradient(ellipse at 20% 80%, rgba(28, 0, 115, 0.4) 0%, transparent 50%),
|
||
radial-gradient(ellipse at 80% 10%, rgba(0, 93, 117, 0.4) 0%, transparent 50%),
|
||
radial-gradient(ellipse at 70% 90%, rgba(120, 36, 128, 0.4) 0%, transparent 50%);
|
||
background-attachment: fixed;
|
||
color: #e0e0ff;
|
||
}
|
||
|
||
.glass-card {
|
||
background: var(--glass-bg);
|
||
backdrop-filter: blur(16px);
|
||
-webkit-backdrop-filter: blur(16px);
|
||
border: 1px solid var(--glass-border);
|
||
border-radius: 24px;
|
||
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
|
||
transition: all 0.3s ease;
|
||
}
|
||
.glass-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), 0 0 20px 0 var(--glow-color-1);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
gap: 1.5rem;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
grid-auto-rows: auto;
|
||
}
|
||
|
||
.grid-item-header { grid-column: span 12; }
|
||
.grid-item-insight { grid-column: span 12; lg:grid-column: span 8; }
|
||
.grid-item-chart1 { grid-column: span 12; md:grid-column: span 6; lg:grid-column: span 4; }
|
||
.grid-item-chart2 { grid-column: span 12; md:grid-column: span 6; lg:grid-column: span 4; }
|
||
.grid-item-chart3 { grid-column: span 12; md:grid-column: span 6; lg:grid-column: span 4; }
|
||
.grid-item-catalyst { grid-column: span 12; lg:grid-column: span 5; }
|
||
.grid-item-pathway { grid-column: span 12; lg:grid-column: span 7; }
|
||
.grid-item-players { grid-column: span 12; lg:grid-column: span 6; }
|
||
.grid-item-risks { grid-column: span 12; lg:grid-column: span 6; }
|
||
.grid-item-data-tabs { grid-column: span 12; }
|
||
|
||
|
||
.fui-title {
|
||
font-family: 'Roboto Mono', monospace;
|
||
text-shadow: 0 0 8px var(--glow-color-1), 0 0 12px var(--glow-color-2);
|
||
color: #fff;
|
||
}
|
||
|
||
.fui-header {
|
||
font-family: 'Roboto Mono', monospace;
|
||
color: #c0c0ff;
|
||
text-transform: uppercase;
|
||
letter-spacing: 2px;
|
||
border-bottom: 1px solid var(--glass-border);
|
||
padding-bottom: 0.5rem;
|
||
margin-bottom: 1rem;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
.fui-header::before {
|
||
content: '>';
|
||
margin-right: 0.5rem;
|
||
color: #00ffff;
|
||
animation: blink 1s infinite;
|
||
}
|
||
@keyframes blink { 50% { opacity: 0; } }
|
||
|
||
.glow-text {
|
||
color: #c4f5ff;
|
||
text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
|
||
}
|
||
|
||
h3 {
|
||
color: #fff;
|
||
font-weight: 500;
|
||
}
|
||
|
||
::-webkit-scrollbar { width: 6px; }
|
||
::-webkit-scrollbar-track { background: transparent; }
|
||
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
|
||
::-webkit-scrollbar-thumb:hover { background: var(--glow-color-1); }
|
||
</style>
|
||
</head>
|
||
|
||
<body class="min-h-screen p-4 md:p-8">
|
||
|
||
<div class="max-w-7xl mx-auto">
|
||
|
||
<!-- Header -->
|
||
<header class="text-center mb-12 grid-item-header">
|
||
<h1 class="text-4xl md:text-6xl font-bold fui-title tracking-widest">AGV</h1>
|
||
<p class="text-lg md:text-2xl text-cyan-300 mt-2 font-light">自动导引运输车 | 概念深度研究</p>
|
||
<div class="mt-4 text-xs text-gray-500">
|
||
<p>北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现</p>
|
||
<p>本报告为AI合成数据,投资需谨慎</p>
|
||
</div>
|
||
</header>
|
||
|
||
<main class="bento-grid">
|
||
|
||
<!-- Core Viewpoint -->
|
||
<div class="glass-card p-6 grid-item-header">
|
||
<h2 class="fui-header">核心观点摘要</h2>
|
||
<p class="text-base leading-relaxed">
|
||
AGV概念正处于从<strong class="glow-text">“成本替代”驱动的快速成长期</strong>向<strong class="glow-text">“智能升级”驱动的平台化发展期</strong>过渡的关键阶段。其核心驱动力源于“劳动力成本上升”与“核心技术降本”形成的“剪刀差效应”,并得到国家智能制造政策的强力催化。当前市场正经历一轮洗牌,龙头企业凭借技术、规模和渠道优势加速整合市场,未来AGV的价值将不仅限于搬运工具,而是作为<strong class="glow-text">具身智能的移动底盘和数据节点</strong>,成为构建未来智慧工厂的基石。
|
||
</p>
|
||
</div>
|
||
|
||
<!-- Core Logic & Market Analysis -->
|
||
<div class="glass-card p-6 grid-item-insight">
|
||
<h2 class="fui-header">核心逻辑与市场认知分析</h2>
|
||
<div class="space-y-4 text-sm leading-6">
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">1. 经济账的根本逻辑 (基石)</h3>
|
||
<p>一台无人叉车可替代<strong class="text-white">2-3名</strong>三班倒司机,搬运量提升<strong class="text-white">3-5倍</strong>,能耗降低<strong class="text-white">40%</strong>。同时,AGV均价已从约20万元/台降至16-20万元/台。投资回报周期(ROI)显著缩短,使其从“奢侈品”变为制造业和物流业的“必需品”。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">2. 政策的强力催化 (保障)</h3>
|
||
<p>从中央的《"十四五"现代物流发展规划》到地方的设备更新补贴政策(如设备投资30%补贴),政府正在系统性地推动智能物流装备的应用,为行业需求提供了确定性的增长保障。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">3. 技术的范式转移 (驱动力)</h3>
|
||
<p>AGV向AMR的进化是核心技术驱动力。传统AGV依赖磁条、二维码,部署僵化,而基于SLAM导航的AMR能自主感知环境、智能规划路径,极大提升了柔性和适用场景。这是从“自动化工具”到“智能体”的质变。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">4. 产业升级的刚性需求 (应用场景)</h3>
|
||
<p>新能源、半导体、飞行汽车制造等新兴产业对生产环境、节拍精度和数据追溯提出更高要求,使得AGV/AMR成为其产线物流的“标配”而非“选配”。</p>
|
||
</div>
|
||
</div>
|
||
<h2 class="fui-header mt-6">预期差分析</h2>
|
||
<div class="space-y-4 text-sm leading-6">
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">市场整体 vs. 龙头个体验证</h3>
|
||
<p>市场普遍认为AGV是高景气赛道,但<strong class="text-red-400">最大的预期差在于低估了行业竞争的激烈程度和马太效应</strong>。杭叉集团在行业订单下滑20%-30%的背景下实现自身营收70%的高增长,表明其正在快速侵蚀竞争对手份额。市场的宏大叙事与微观现实存在显著差异。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">硬件销售 vs. 系统集成价值</h3>
|
||
<p>市场可能仍将AGV公司主要视为硬件制造商。但路演揭示,海外系统集成业务毛利率可<strong class="text-green-400">超过100%</strong>,远高于硬件销售(20%)。软件、算法和解决方案能力是决定盈利能力和护城河的关键,其价值尚未被充分认知。</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-cyan-300 mb-2">AGV vs. 人形机器人</h3>
|
||
<p>市场可能高估了人形机器人短期替代AGV的可能性,而<strong class="text-yellow-400">低估了AGV作为成熟、经济方案的持续渗透能力</strong>,及其作为未来复合机器人“底盘”的平台价值。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Charts -->
|
||
<div class="glass-card p-6 grid-item-chart1 flex flex-col">
|
||
<h2 class="fui-header flex-shrink-0">AGV/AMR出货量 (万台)</h2>
|
||
<div id="chart-shipments" class="w-full h-64 flex-grow"></div>
|
||
</div>
|
||
<div class="glass-card p-6 grid-item-chart2 flex flex-col">
|
||
<h2 class="fui-header flex-shrink-0">无人叉车销量 (万台)</h2>
|
||
<div id="chart-forklifts" class="w-full h-64 flex-grow"></div>
|
||
</div>
|
||
<div class="glass-card p-6 grid-item-chart3 flex flex-col">
|
||
<h2 class="fui-header flex-shrink-0">智能仓储市场规模 (亿元)</h2>
|
||
<div id="chart-warehousing" class="w-full h-64 flex-grow"></div>
|
||
</div>
|
||
|
||
<!-- Catalyst -->
|
||
<div class="glass-card p-6 grid-item-catalyst">
|
||
<h2 class="fui-header">关键催化剂 (3-6个月)</h2>
|
||
<ul class="space-y-3 list-disc list-inside text-sm">
|
||
<li><strong class="text-white">设备更新政策落地:</strong> 各省市补贴细则出台将直接刺激下游企业采购AGV。</li>
|
||
<li><strong class="text-white">龙头企业海外突破:</strong> 杭叉集团美国子公司若拿下标杆项目,将验证中国企业全球竞争力。</li>
|
||
<li><strong class="text-white">行业标杆项目展示:</strong> 大型物流展会上的“全无人”解决方案将起到强大示范效应。</li>
|
||
<li><strong class="text-white">通用协议标准进展:</strong> 行业接口标准的制定将极大促进行业生态健康发展。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Pathway -->
|
||
<div class="glass-card p-6 grid-item-pathway">
|
||
<h2 class="fui-header">长期发展路径</h2>
|
||
<ol class="relative border-l border-gray-700 space-y-6">
|
||
<li class="ml-4">
|
||
<div class="absolute w-3 h-3 bg-cyan-400 rounded-full mt-1.5 -left-1.5 border border-white"></div>
|
||
<time class="mb-1 text-sm font-normal leading-none text-gray-400">当前 - 2027</time>
|
||
<h3 class="text-lg font-semibold text-white">规模化渗透阶段</h3>
|
||
<p class="text-sm font-normal text-gray-300">核心任务是提升渗透率(叉车AGV从~2%至10%)。竞争焦点在于性价比、稳定性和规模化交付能力。</p>
|
||
</li>
|
||
<li class="ml-4">
|
||
<div class="absolute w-3 h-3 bg-cyan-400 rounded-full mt-1.5 -left-1.5 border border-white"></div>
|
||
<time class="mb-1 text-sm font-normal leading-none text-gray-400">2027 - 2030</time>
|
||
<h3 class="text-lg font-semibold text-white">智能化集成阶段</h3>
|
||
<p class="text-sm font-normal text-gray-300">竞争转向软件定义的智能调度系统,实现千台级大规模集群协同作业。</p>
|
||
</li>
|
||
<li class="ml-4">
|
||
<div class="absolute w-3 h-3 bg-cyan-400 rounded-full mt-1.5 -left-1.5 border border-white"></div>
|
||
<time class="mb-1 text-sm font-normal leading-none text-gray-400">2030以后</time>
|
||
<h3 class="text-lg font-semibold text-white">平台化与生态化阶段</h3>
|
||
<p class="text-sm font-normal text-gray-300">AGV转型为“工业移动具身智能”平台,企业从设备商转型为解决方案提供商。</p>
|
||
</li>
|
||
</ol>
|
||
</div>
|
||
|
||
<!-- Players & Ecosystem -->
|
||
<div class="glass-card p-6 grid-item-players">
|
||
<h2 class="fui-header">产业链与核心玩家</h2>
|
||
<div class="space-y-4">
|
||
<div>
|
||
<span class="badge badge-info badge-outline">上游:核心零部件</span>
|
||
<p class="text-xs mt-1">减速器(秦川机床)、齿轮(夏厦精密)、回转支承(万达轴承)、激光雷达、控制器等。</p>
|
||
</div>
|
||
<div>
|
||
<span class="badge badge-accent badge-outline">中游:本体制造与系统集成</span>
|
||
<p class="text-xs mt-1">叉车式AGV龙头(杭叉集团, 安徽合力)、综合解决方案商(井松智能, 机科股份)、新兴玩家(中科创达)。</p>
|
||
</div>
|
||
<div>
|
||
<span class="badge badge-secondary badge-outline">下游:应用领域</span>
|
||
<p class="text-xs mt-1">工业制造(新能源, 汽车)、仓储物流(电商, 医药)、特殊场景(港口, 矿山)。</p>
|
||
</div>
|
||
</div>
|
||
<div class="mt-6 space-y-3">
|
||
<div class="p-3 border border-dashed border-gray-600 rounded-lg">
|
||
<h4 class="font-bold text-white">杭叉集团 (领导者)</h4>
|
||
<p class="text-sm">传统叉车巨头,并购国自机器人补齐AMR和AI短板,形成全场景解决方案能力。逆势增长和海外高毛利验证其竞争力。</p>
|
||
</div>
|
||
<div class="p-3 border border-dashed border-gray-600 rounded-lg">
|
||
<h4 class="font-bold text-white">机科股份 (差异化竞争者)</h4>
|
||
<p class="text-sm">专注于定制化、高附加值解决方案,避开价格战。在重载AGV领域技术积淀深厚,哈工大背景提供技术背书。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Risks -->
|
||
<div class="glass-card p-6 grid-item-risks">
|
||
<h2 class="fui-header">潜在风险与挑战</h2>
|
||
<ul class="space-y-3 list-disc list-inside text-sm">
|
||
<li><strong class="text-red-400">技术风险:</strong> 缺乏统一的调度系统通用协议,形成“信息孤岛”,限制大规模混合部署效率。</li>
|
||
<li><strong class="text-red-400">商业化风险:</strong> 标准化产品市场陷入“红海”,价格战侵蚀利润。系统集成项目周期长、回款慢,考验现金流。</li>
|
||
<li><strong class="text-red-400">竞争风险:</strong> 行业内卷加剧,下游客户(如宁德时代)和新玩家入局,竞争格局远未稳定。</li>
|
||
<li><strong class="text-red-400">信息交叉验证风险:</strong> 市场规模统计口径不一,宏观高增长预测与微观行业订单下滑存在矛盾。</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Data Source Tabs -->
|
||
<div class="glass-card p-6 grid-item-data-tabs" x-data="{ tab: 'news' }">
|
||
<div class="tabs tabs-boxed bg-black bg-opacity-20">
|
||
<a class="tab" :class="{'tab-active': tab === 'news'}" @click="tab = 'news'">新闻数据洞察</a>
|
||
<a class="tab" :class="{'tab-active': tab === 'roadshow'}" @click="tab = 'roadshow'">路演纪要精选</a>
|
||
<a class="tab" :class="{'tab-active': tab === 'report'}" @click="tab = 'report'">研报核心发现</a>
|
||
</div>
|
||
<div class="p-4 mt-4 text-sm max-h-96 overflow-y-auto">
|
||
<div x-show="tab === 'news'">
|
||
<ul class="space-y-3">
|
||
<li><strong>企业应用广泛:</strong> 杭叉集团、井松智能、诺力股份等均有成熟AGV产品及解决方案。宁德时代计划自研AGV,显示下游巨头入局意图。</li>
|
||
<li><strong>场景持续拓展:</strong> AGV已从传统工业、仓储拓展至飞行汽车工厂、造船厂等新兴领域。</li>
|
||
<li><strong>技术趋势明确:</strong> 导航技术从电磁、二维码向激光、视觉导航演进。5G技术与AGV的融合成为政策推动方向。</li>
|
||
<li><strong>政策支持有力:</strong> 国家及地方层面均出台政策鼓励AGV等智能化物流设备的应用。</li>
|
||
</ul>
|
||
</div>
|
||
<div x-show="tab === 'roadshow'" x-cloak>
|
||
<ul class="space-y-3">
|
||
<li><strong>市场分化加剧:</strong> 杭叉集团披露2024年国内AGV订单量同比下滑20-30%,但自身营收逆势增长70%,头部集中趋势明显。</li>
|
||
<li><strong>出海战略提速:</strong> 杭叉集团设立美国AGV子公司,目标5年实现1亿美元营收,显示龙头企业正系统性攻占海外高价值市场。</li>
|
||
<li><strong>产业整合深化:</strong> 杭叉智能吸收合并国自机器人,整合AGV与AMR资源,目标成为全球领先的机器人产业链公司。</li>
|
||
<li><strong>渗透率空间巨大:</strong> 当前无人叉车/AGV渗透率仅约2%-3%,远期目标10%,替代空间广阔。</li>
|
||
</ul>
|
||
</div>
|
||
<div x-show="tab === 'report'" x-cloak>
|
||
<ul class="space-y-3">
|
||
<li><strong>市场高速增长:</strong> 预计到2027年我国AGV/AMR出货量将突破110万台,2022-2027年复合增速近50%。</li>
|
||
<li><strong>技术路径收敛:</strong> 激光SLAM成为主流导航方式,2023年SLAM导航的无人叉车占比达75%。</li>
|
||
<li><strong>核心部件国产化机遇:</strong> AGV/AMR回转支承、激光雷达等核心零部件市场规模快速增长,为万达轴承等国内厂商提供发展机遇。</li>
|
||
<li><strong>行业痛点:</strong> 缺乏统一的调度系统与AGV设备的通用协议,导致不同厂家设备难以协同工作。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</main>
|
||
|
||
<!-- Rise Analysis -->
|
||
<section class="mt-12">
|
||
<h2 class="text-2xl md:text-3xl font-bold fui-title text-center mb-8">涨幅异动分析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||
<!-- Stock Rise Card -->
|
||
<div class="glass-card p-6" x-data="{ expanded: false }">
|
||
<div class="flex justify-between items-center">
|
||
<h3 class="text-xl font-bold text-white">泰坦股份 (003036)</h3>
|
||
<span class="badge badge-lg badge-success font-mono">+9.98%</span>
|
||
</div>
|
||
<p class="text-xs text-gray-400 font-mono">2025-09-24</p>
|
||
<div class="mt-4 text-sm prose max-w-none text-gray-300" :class="!expanded && 'line-clamp-4'" x-ref="content">
|
||
<p class="font-semibold text-cyan-300">核心结论:</p>
|
||
<p>“AGV 首批下线 + 织造 AI 大模型 V1.0 即将发布”双事件在固态电池 / 高端装备热度峰值日集中兑现,资金借“泰坦系”映射通道抢筹封板。</p>
|
||
<p class="font-semibold text-cyan-300">驱动概念:</p>
|
||
<p>固态电池+高端装备+AI 工业质检</p>
|
||
<p class="font-semibold text-cyan-300">个股异动解析:</p>
|
||
<p>浙江省“未来工厂”试点,首批 50 台 AGV 下线,年产 2000 台定增项目进入试生产,单机价值 45-50 万元,年内贡献收入确定性高。公司公众号宣布与浙大联合开发的织造瑕疵 AI 大模型 T-AIGC V1.0 内测完成,市场归入“AIGC+工业”新分支。</p>
|
||
</div>
|
||
<button @click="expanded = !expanded" class="text-cyan-400 text-sm mt-2" x-show="$refs.content.scrollHeight > $refs.content.clientHeight || expanded">
|
||
<span x-show="!expanded">展开阅读</span>
|
||
<span x-show="expanded">收起</span>
|
||
</button>
|
||
</div>
|
||
<!-- Stock Rise Card -->
|
||
<div class="glass-card p-6" x-data="{ expanded: false }">
|
||
<div class="flex justify-between items-center">
|
||
<h3 class="text-xl font-bold text-white">东方精工 (002611)</h3>
|
||
<span class="badge badge-lg badge-success font-mono">+9.97%</span>
|
||
</div>
|
||
<p class="text-xs text-gray-400 font-mono">2025-08-07</p>
|
||
<div class="mt-4 text-sm prose max-w-none text-gray-300" :class="!expanded && 'line-clamp-4'" x-ref="content">
|
||
<p class="font-semibold text-cyan-300">核心结论:</p>
|
||
<p>参股嘉腾机器人切入人形机器人下肢运动模组供应链,叠加世界机器人大会召开,资金集中攻击机器人主题,东方精工被动领涨。</p>
|
||
<p class="font-semibold text-cyan-300">驱动概念:</p>
|
||
<p>人形机器人+AGV核心控制器+智能机器</p>
|
||
<p class="font-semibold text-cyan-300">个股异动解析:</p>
|
||
<p>互动易披露“参股20%的嘉腾机器人AGV核心控制器已批量用于人形机器人下肢运动模组,并向3家头部整机厂小批量供货”。世界机器人大会召开,板块资金净流入90亿元。嘉腾AGV控制器可复用于无人搬运车及低空物流场景。</p>
|
||
</div>
|
||
<button @click="expanded = !expanded" class="text-cyan-400 text-sm mt-2" x-show="$refs.content.scrollHeight > $refs.content.clientHeight || expanded">
|
||
<span x-show="!expanded">展开阅读</span>
|
||
<span x-show="expanded">收起</span>
|
||
</button>
|
||
</div>
|
||
<!-- Stock Rise Card -->
|
||
<div class="glass-card p-6" x-data="{ expanded: false }">
|
||
<div class="flex justify-between items-center">
|
||
<h3 class="text-xl font-bold text-white">鸣志电器 (603728)</h3>
|
||
<span class="badge badge-lg badge-success font-mono">+10.0%</span>
|
||
</div>
|
||
<p class="text-xs text-gray-400 font-mono">2025-09-08</p>
|
||
<div class="mt-4 text-sm prose max-w-none text-gray-300" :class="!expanded && 'line-clamp-4'" x-ref="content">
|
||
<p class="font-semibold text-cyan-300">核心结论:</p>
|
||
<p>特斯拉官宣“2026H2量产100万台Optimus”并绑定马斯克薪酬,鸣志电器作为T链手部空心杯电机C样唯一国产供应商,被认定为最纯“0→1”弹性标的而涨停。</p>
|
||
<p class="font-semibold text-cyan-300">驱动概念:</p>
|
||
<p>人形机器人+特斯拉链+空心杯电机</p>
|
||
<p class="font-semibold text-cyan-300">个股异动解析:</p>
|
||
<p>公司微型步进、无齿槽空心杯、伺服驱动三大平台已小批量进入Optimus B样。手部关节需10只空心杯电机+行星滚柱丝杠一体化模组,单机ASP约3000元,100万台对应30亿元增量。公司是A股唯一同时提供“空心杯电机+驱动器+丝杠模组”一站式方案的Tier2。</p>
|
||
</div>
|
||
<button @click="expanded = !expanded" class="text-cyan-400 text-sm mt-2" x-show="$refs.content.scrollHeight > $refs.content.clientHeight || expanded">
|
||
<span x-show="!expanded">展开阅读</span>
|
||
<span x-show="expanded">收起</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Core Companies Table -->
|
||
<section class="mt-12">
|
||
<h2 class="text-2xl md:text-3xl font-bold fui-title text-center mb-8">AGV 概念核心公司</h2>
|
||
<div class="glass-card p-2 md:p-6">
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra-zebra w-full">
|
||
<thead class="font-mono text-cyan-300">
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>核心逻辑</th>
|
||
<th>市值(亿)</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>井松智能</strong> (<a href="https://valuefrontier.cn/company?scode=688251" target="_blank" class="link link-hover text-blue-400">688251</a>)</td>
|
||
<td>公司将进一步推进AGV产品的研发与应用,逐步提高AGV产品的市场占有率</td>
|
||
<td>17.2</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>机科股份</strong> (<a href="https://valuefrontier.cn/company?scode=920579" target="_blank" class="link link-hover text-blue-400">920579</a>)</td>
|
||
<td>公司于GGII评选的2020年中国AGV企业竞争力排行TOP100中位列第一</td>
|
||
<td>26.1</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>东杰智能</strong> (<a href="https://valuefrontier.cn/company?scode=300486" target="_blank" class="link link-hover text-blue-400">300486</a>)</td>
|
||
<td>公司AGV调度系统可以实现对所有小车进行统一调度和管理</td>
|
||
<td>28.2</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>步科股份</strong> (<a href="https://valuefrontier.cn/company?scode=688160" target="_blank" class="link link-hover text-blue-400">688160</a>)</td>
|
||
<td>公司电商AGV运动控制方案,大幅提高了AGV运维效率、有效降低了AGV运维成本</td>
|
||
<td>44.2</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>今天国际</strong> (<a href="https://valuefrontier.cn/company?scode=300532" target="_blank" class="link link-hover text-blue-400">300532</a>)</td>
|
||
<td>公司自主研发的AGV产品近30种</td>
|
||
<td>48</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>科大智能</strong> (<a href="https://valuefrontier.cn/company?scode=300222" target="_blank" class="link link-hover text-blue-400">300222</a>)</td>
|
||
<td>公司在智能物流机器人方面产品主要为AGV移动机器人及AGV+解决方案</td>
|
||
<td>56.9</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>昆船智能</strong> (<a href="https://valuefrontier.cn/company?scode=301311" target="_blank" class="link link-hover text-blue-400">301311</a>)</td>
|
||
<td>公司是国内较早从事AGV研发生产的企业之一,拥有完整自主知识产权AGV核心技术</td>
|
||
<td>58.4</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>瑞鹄模具</strong> (<a href="https://valuefrontier.cn/company?scode=002997" target="_blank" class="link link-hover text-blue-400">002997</a>)</td>
|
||
<td>子公司研发的移动机器人(AGV/AMR)及机器人周边设备已批量承接订单并实现销售</td>
|
||
<td>60.6</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>秦川机床</strong> (<a href="https://valuefrontier.cn/company?scode=000837" target="_blank" class="link link-hover text-blue-400">000837</a>)</td>
|
||
<td>子公司沃克齿轮开发的AGV减速器产品首批小批量已投放市场</td>
|
||
<td>97.7</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>安徽合力</strong> (<a href="https://valuefrontier.cn/company?scode=600761" target="_blank" class="link link-hover text-blue-400">600761</a>)</td>
|
||
<td>项目建成后,预计形成年产2000台套AGV及本体等产能</td>
|
||
<td>136</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>大族激光</strong> (<a href="https://valuefrontier.cn/company?scode=002008" target="_blank" class="link link-hover text-blue-400">002008</a>)</td>
|
||
<td>公司机械自动化产品包括自动化设备、AGV移动机器人等</td>
|
||
<td>199</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
</div>
|
||
|
||
<script>
|
||
const chartColors = {
|
||
line: '#00ffff',
|
||
area: 'rgba(0, 255, 255, 0.2)',
|
||
text: '#a0a0ff',
|
||
axisLine: 'rgba(100, 100, 200, 0.3)',
|
||
splitLine: 'rgba(100, 100, 200, 0.1)'
|
||
};
|
||
|
||
// Chart 1: Shipments
|
||
const shipmentsChart = echarts.init(document.getElementById('chart-shipments'));
|
||
const shipmentsOption = {
|
||
tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.8)', borderColor: '#00ffff', textStyle: { color: '#fff' } },
|
||
grid: { left: '3%', right: '4%', bottom: '3%', top: '15%', containLabel: true },
|
||
xAxis: {
|
||
type: 'category',
|
||
boundaryGap: false,
|
||
data: ['2019', '2020', '2021', '2022', '2027(E)'],
|
||
axisLine: { lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLine: { show: true, lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text },
|
||
splitLine: { lineStyle: { color: chartColors.splitLine } }
|
||
},
|
||
series: [{
|
||
name: '出货量',
|
||
type: 'line',
|
||
smooth: true,
|
||
symbol: 'none',
|
||
data: [4.1, 7.2, 11.5, 14.6, 110],
|
||
lineStyle: { color: chartColors.line, width: 2 },
|
||
areaStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
|
||
offset: 0,
|
||
color: chartColors.area
|
||
}, {
|
||
offset: 1,
|
||
color: 'rgba(0, 255, 255, 0)'
|
||
}])
|
||
}
|
||
}]
|
||
};
|
||
shipmentsChart.setOption(shipmentsOption);
|
||
|
||
// Chart 2: Forklifts
|
||
const forkliftsChart = echarts.init(document.getElementById('chart-forklifts'));
|
||
const forkliftsOption = {
|
||
tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.8)', borderColor: '#ff00ff', textStyle: { color: '#fff' } },
|
||
grid: { left: '3%', right: '4%', bottom: '3%', top: '15%', containLabel: true },
|
||
xAxis: {
|
||
type: 'category',
|
||
data: ['2015', '2018', '2021', '2023'],
|
||
axisLine: { lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLine: { show: true, lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text },
|
||
splitLine: { lineStyle: { color: chartColors.splitLine } }
|
||
},
|
||
series: [{
|
||
name: '销量',
|
||
type: 'bar',
|
||
data: [0.03, 0.22, 1.25, 1.95],
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
|
||
offset: 0,
|
||
color: '#ff00ff'
|
||
}, {
|
||
offset: 1,
|
||
color: '#8A2BE2'
|
||
}]),
|
||
borderRadius: [5, 5, 0, 0]
|
||
}
|
||
}]
|
||
};
|
||
forkliftsChart.setOption(forkliftsOption);
|
||
|
||
// Chart 3: Warehousing
|
||
const warehousingChart = echarts.init(document.getElementById('chart-warehousing'));
|
||
const warehousingOption = {
|
||
tooltip: { trigger: 'axis', backgroundColor: 'rgba(0,0,0,0.8)', borderColor: '#00ff7f', textStyle: { color: '#fff' } },
|
||
grid: { left: '3%', right: '4%', bottom: '3%', top: '15%', containLabel: true },
|
||
xAxis: {
|
||
type: 'category',
|
||
data: ['2024(E)', '2025(E)'],
|
||
axisLine: { lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text }
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
axisLine: { show: true, lineStyle: { color: chartColors.axisLine } },
|
||
axisLabel: { color: chartColors.text },
|
||
splitLine: { lineStyle: { color: chartColors.splitLine } }
|
||
},
|
||
series: [{
|
||
name: '市场规模',
|
||
type: 'line',
|
||
smooth: true,
|
||
symbol: 'circle',
|
||
symbolSize: 8,
|
||
data: [1760.5, 1954.1],
|
||
lineStyle: { color: '#00ff7f', width: 2 },
|
||
itemStyle: { color: '#00ff7f' }
|
||
}]
|
||
};
|
||
warehousingChart.setOption(warehousingOption);
|
||
|
||
window.addEventListener('resize', () => {
|
||
shipmentsChart.resize();
|
||
forkliftsChart.resize();
|
||
warehousingChart.resize();
|
||
});
|
||
|
||
</script>
|
||
|
||
</body>
|
||
|
||
</html> |