1395 lines
55 KiB
HTML
1395 lines
55 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>芯联集成(688469.SH)投资价值深度研究报告</title>
|
||
<link href="/research/js/all.min.css" rel="stylesheet">
|
||
<script src="/research/js/chart.js"></script>
|
||
<style>
|
||
:root {
|
||
--primary-color: #2c3e50;
|
||
--secondary-color: #3498db;
|
||
--accent-color: #2ecc71;
|
||
--danger-color: #e74c3c;
|
||
--light-color: #ecf0f1;
|
||
--dark-color: #34495e;
|
||
--text-color: #333;
|
||
--border-color: #ddd;
|
||
--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||
--transition: all 0.3s ease;
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
line-height: 1.6;
|
||
color: var(--text-color);
|
||
background-color: #f9f9f9;
|
||
padding-top: 70px;
|
||
}
|
||
|
||
header {
|
||
background-color: var(--primary-color);
|
||
color: white;
|
||
padding: 2rem 0;
|
||
text-align: center;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.header-content {
|
||
position: relative;
|
||
z-index: 2;
|
||
}
|
||
|
||
.header-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.7) 100%);
|
||
z-index: 1;
|
||
}
|
||
|
||
.container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
padding: 0 20px;
|
||
}
|
||
|
||
nav {
|
||
background-color: white;
|
||
box-shadow: var(--box-shadow);
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
z-index: 1000;
|
||
}
|
||
|
||
.nav-container {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 15px 20px;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 1.5rem;
|
||
font-weight: bold;
|
||
color: var(--primary-color);
|
||
}
|
||
|
||
.nav-links {
|
||
display: flex;
|
||
list-style: none;
|
||
}
|
||
|
||
.nav-links li {
|
||
margin-left: 20px;
|
||
}
|
||
|
||
.nav-links a {
|
||
text-decoration: none;
|
||
color: var(--primary-color);
|
||
font-weight: 500;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.nav-links a:hover {
|
||
color: var(--secondary-color);
|
||
}
|
||
|
||
.menu-toggle {
|
||
display: none;
|
||
cursor: pointer;
|
||
}
|
||
|
||
section {
|
||
padding: 40px 0;
|
||
border-bottom: 1px solid var(--border-color);
|
||
}
|
||
|
||
h1 {
|
||
font-size: 2.5rem;
|
||
margin-bottom: 1rem;
|
||
font-weight: 700;
|
||
}
|
||
|
||
h2 {
|
||
font-size: 2rem;
|
||
margin: 2rem 0 1rem;
|
||
color: var(--primary-color);
|
||
border-bottom: 2px solid var(--secondary-color);
|
||
padding-bottom: 0.5rem;
|
||
}
|
||
|
||
h3 {
|
||
font-size: 1.5rem;
|
||
margin: 1.5rem 0 1rem;
|
||
color: var(--dark-color);
|
||
}
|
||
|
||
p {
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.card {
|
||
background-color: white;
|
||
border-radius: 8px;
|
||
box-shadow: var(--box-shadow);
|
||
padding: 25px;
|
||
margin-bottom: 30px;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.highlight {
|
||
background-color: rgba(46, 204, 113, 0.1);
|
||
padding: 2px 5px;
|
||
border-radius: 3px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.key-point {
|
||
background-color: rgba(52, 152, 219, 0.1);
|
||
padding: 15px;
|
||
border-radius: 8px;
|
||
margin: 20px 0;
|
||
border-left: 4px solid var(--secondary-color);
|
||
}
|
||
|
||
.key-point h4 {
|
||
color: var(--secondary-color);
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.stat-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
||
gap: 20px;
|
||
margin: 30px 0;
|
||
}
|
||
|
||
.stat-card {
|
||
background-color: white;
|
||
border-radius: 8px;
|
||
box-shadow: var(--box-shadow);
|
||
padding: 20px;
|
||
text-align: center;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.stat-card:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
||
}
|
||
|
||
.stat-value {
|
||
font-size: 2rem;
|
||
font-weight: bold;
|
||
color: var(--secondary-color);
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.stat-label {
|
||
font-size: 0.9rem;
|
||
color: var(--dark-color);
|
||
}
|
||
|
||
.chart-container {
|
||
position: relative;
|
||
height: 400px;
|
||
margin: 30px 0;
|
||
}
|
||
|
||
table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
margin: 20px 0;
|
||
background-color: white;
|
||
box-shadow: var(--box-shadow);
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
th, td {
|
||
padding: 12px 15px;
|
||
text-align: left;
|
||
border-bottom: 1px solid var(--border-color);
|
||
}
|
||
|
||
th {
|
||
background-color: var(--primary-color);
|
||
color: white;
|
||
}
|
||
|
||
tr:nth-child(even) {
|
||
background-color: #f9f9f9;
|
||
}
|
||
|
||
tr:hover {
|
||
background-color: rgba(52, 152, 219, 0.05);
|
||
}
|
||
|
||
.risk-card {
|
||
background-color: white;
|
||
border-radius: 8px;
|
||
box-shadow: var(--box-shadow);
|
||
padding: 20px;
|
||
margin-bottom: 20px;
|
||
border-left: 4px solid var(--danger-color);
|
||
}
|
||
|
||
.risk-card h4 {
|
||
color: var(--danger-color);
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.rating {
|
||
color: #f1c40f;
|
||
letter-spacing: 2px;
|
||
}
|
||
|
||
footer {
|
||
background-color: var(--primary-color);
|
||
color: white;
|
||
padding: 30px 0;
|
||
text-align: center;
|
||
}
|
||
|
||
.footer-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.social-links {
|
||
margin: 15px 0;
|
||
}
|
||
|
||
.social-links a {
|
||
color: white;
|
||
margin: 0 10px;
|
||
font-size: 1.5rem;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.social-links a:hover {
|
||
color: var(--accent-color);
|
||
}
|
||
|
||
.copyright {
|
||
font-size: 0.9rem;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
.back-to-top {
|
||
position: fixed;
|
||
bottom: 30px;
|
||
right: 30px;
|
||
background-color: var(--secondary-color);
|
||
color: white;
|
||
width: 50px;
|
||
height: 50px;
|
||
border-radius: 50%;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
cursor: pointer;
|
||
box-shadow: var(--box-shadow);
|
||
opacity: 0;
|
||
visibility: hidden;
|
||
transition: var(--transition);
|
||
z-index: 999;
|
||
}
|
||
|
||
.back-to-top.visible {
|
||
opacity: 1;
|
||
visibility: visible;
|
||
}
|
||
|
||
.back-to-top:hover {
|
||
background-color: var(--primary-color);
|
||
transform: translateY(-5px);
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.menu-toggle {
|
||
display: block;
|
||
}
|
||
|
||
.nav-links {
|
||
position: fixed;
|
||
top: 70px;
|
||
left: 0;
|
||
width: 100%;
|
||
flex-direction: column;
|
||
background-color: white;
|
||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||
max-height: 0;
|
||
overflow: hidden;
|
||
transition: var(--transition);
|
||
}
|
||
|
||
.nav-links.active {
|
||
max-height: 300px;
|
||
}
|
||
|
||
.nav-links li {
|
||
margin: 0;
|
||
padding: 15px 20px;
|
||
border-bottom: 1px solid var(--border-color);
|
||
}
|
||
|
||
h1 {
|
||
font-size: 2rem;
|
||
}
|
||
|
||
h2 {
|
||
font-size: 1.7rem;
|
||
}
|
||
|
||
.stat-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
|
||
.chart-container {
|
||
height: 300px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<nav>
|
||
<div class="nav-container">
|
||
<div class="logo">芯联集成</div>
|
||
<div class="menu-toggle">
|
||
<i class="fas fa-bars"></i>
|
||
</div>
|
||
<ul class="nav-links">
|
||
<li><a href="#overview">公司概况</a></li>
|
||
<li><a href="#financial">财务表现</a></li>
|
||
<li><a href="#industry">行业前景</a></li>
|
||
<li><a href="#competition">竞争格局</a></li>
|
||
<li><a href="#future">未来展望</a></li>
|
||
<li><a href="#risk">投资风险</a></li>
|
||
<li><a href="#recommendation">投资建议</a></li>
|
||
</ul>
|
||
</div>
|
||
</nav>
|
||
|
||
<header>
|
||
<div class="header-bg"></div>
|
||
<div class="container header-content">
|
||
<h1>芯联集成(688469.SH)投资价值深度研究报告</h1>
|
||
<p>碳化硅赛道领跑者,高增长与盈利拐点显现</p>
|
||
</div>
|
||
</header>
|
||
|
||
<section id="investment-highlights">
|
||
<div class="container">
|
||
<h2>投资要点</h2>
|
||
<div class="key-point">
|
||
<h4>核心投资逻辑</h4>
|
||
<ol>
|
||
<li><span class="highlight">行业领先的碳化硅布局</span>:8英寸SiC产线预计2025年下半年量产,2024年碳化硅收入突破10亿元</li>
|
||
<li><span class="highlight">营收持续高速增长</span>:2024年营收65.09亿元,同比增长22.25%</li>
|
||
<li><span class="highlight">车载业务主导</span>:2024年车载业务贡献51.78%收入,同比增长41%</li>
|
||
<li><span class="highlight">全球第一梯队</span>:2024年跻身全球专属晶圆代工榜单前十</li>
|
||
<li><span class="highlight">机构目标价上行空间显著</span>:中信证券目标价5.8元,较当前有20.58%上行空间</li>
|
||
</ol>
|
||
</div>
|
||
|
||
<div class="stat-grid">
|
||
<div class="stat-card">
|
||
<div class="stat-value">65.09亿</div>
|
||
<div class="stat-label">2024年营收</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-value">1.03%</div>
|
||
<div class="stat-label">2024年毛利率</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-value">51.78%</div>
|
||
<div class="stat-label">车载业务占比</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-value">20.58%</div>
|
||
<div class="stat-label">目标价上行空间</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="overview">
|
||
<div class="container">
|
||
<h2>公司概况与业务结构</h2>
|
||
|
||
<h3>1.1 公司发展历程与战略定位</h3>
|
||
<div class="card">
|
||
<p>芯联集成电路制造股份有限公司(证券代码:688469.SH)成立于2018年3月,总部位于浙江绍兴,是一家专注于功率、传感和传输应用领域,提供模拟芯片及模块封装代工服务的制造商。公司前身为"绍兴中芯集成电路制造股份有限公司",于2023年12月6日更名为"芯联集成电路制造股份有限公司"。</p>
|
||
|
||
<h4>发展历程关键阶段:</h4>
|
||
<ul>
|
||
<li><strong>初创期(2018-2019年)</strong>:2018年3月公司注册设立,2019年12月一期项目量产</li>
|
||
<li><strong>快速发展期(2020-2022年)</strong>:2021年6月完成股份制改造,2022年9月二期项目量产</li>
|
||
<li><strong>上市与品牌重塑期(2023年至今)</strong>:2023年5月在科创板挂牌上市,2023年11月更名并推进品牌战略升级</li>
|
||
</ul>
|
||
|
||
<p>公司的战略定位是成为半导体产业界的创新科技公司,新能源产业核心芯片的支柱性力量,聚焦新能源、智能化、物联网三大产业。</p>
|
||
</div>
|
||
|
||
<h3>1.2 主营业务构成与收入结构</h3>
|
||
<div class="card">
|
||
<p>芯联集成主要从事MEMS和功率器件等领域的晶圆代工及封装测试业务,产品主要包括应用于车载、工控、高端消费领域的功率控制、功率驱动、传感信号链等方面的核心芯片及模组。</p>
|
||
|
||
<div class="chart-container">
|
||
<canvas id="revenueCompositionChart"></canvas>
|
||
</div>
|
||
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>业务板块</th>
|
||
<th>收入占比</th>
|
||
<th>同比增长</th>
|
||
<th>主要产品</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>车载业务</td>
|
||
<td>51.78%</td>
|
||
<td>41%</td>
|
||
<td>功率器件、功率IC、功率模组等</td>
|
||
</tr>
|
||
<tr>
|
||
<td>高端消费</td>
|
||
<td>34%</td>
|
||
<td>66%</td>
|
||
<td>MEMS传感器、连接芯片及模组等</td>
|
||
</tr>
|
||
<tr>
|
||
<td>工控业务</td>
|
||
<td>14.22%</td>
|
||
<td>-</td>
|
||
<td>高压BCD、超结MOSFET等</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>业务结构特点:</strong></p>
|
||
<ul>
|
||
<li><strong>车载业务主导</strong>:2024年占比超过50%,主要得益于新能源汽车市场的快速发展</li>
|
||
<li><strong>高端消费业务高速增长</strong>:收入同比增长66%,显示出公司在MEMS传感器和连接芯片领域的竞争优势</li>
|
||
<li><strong>垂直整合度高</strong>:公司向下延伸至模组封装、应用验证、可靠性测试,建构了一站式集成代工制造服务平台</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="financial">
|
||
<div class="container">
|
||
<h2>最近5年财务表现分析(2020-2024)</h2>
|
||
|
||
<h3>2.1 营收与净利润表现</h3>
|
||
<div class="card">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>营收(亿元)</th>
|
||
<th>同比增长</th>
|
||
<th>净利润(亿元)</th>
|
||
<th>同比增长</th>
|
||
<th>毛利率</th>
|
||
<th>净利率</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2020</td>
|
||
<td>7.39</td>
|
||
<td>174.00%</td>
|
||
<td>-13.66</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2021</td>
|
||
<td>20.24</td>
|
||
<td>173.82%</td>
|
||
<td>-12.36</td>
|
||
<td>9.54%</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2022</td>
|
||
<td>46.06</td>
|
||
<td>127.59%</td>
|
||
<td>-10.88</td>
|
||
<td>11.92%</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2023</td>
|
||
<td>53.24</td>
|
||
<td>15.59%</td>
|
||
<td>-19.58</td>
|
||
<td>-79.92%</td>
|
||
<td>-6.81%</td>
|
||
<td>-36.78%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>65.09</td>
|
||
<td>22.25%</td>
|
||
<td>-9.62</td>
|
||
<td>50.87%</td>
|
||
<td>1.03%</td>
|
||
<td>-14.78%</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<div class="chart-container">
|
||
<canvas id="revenueChart"></canvas>
|
||
</div>
|
||
|
||
<div class="chart-container">
|
||
<canvas id="netProfitChart"></canvas>
|
||
</div>
|
||
|
||
<p><strong>财务表现特点:</strong></p>
|
||
<ul>
|
||
<li><strong>营收持续高速增长</strong>:营收从2020年的7.39亿元增长至2024年的65.09亿元,年复合增长率高达77.85%</li>
|
||
<li><strong>亏损逐步收窄</strong>:亏损额从2020年的13.66亿元逐步收窄至2024年的9.62亿元,2024年亏损同比减少50.87%</li>
|
||
<li><strong>毛利率实现转正</strong>:2024年公司毛利率首次转正至1.03%,标志着公司盈利拐点的出现</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<h3>2.2 盈利能力分析</h3>
|
||
<div class="card">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>毛利率</th>
|
||
<th>同比变化</th>
|
||
<th>EBITDA(亿元)</th>
|
||
<th>同比增长</th>
|
||
<th>研发投入(亿元)</th>
|
||
<th>研发投入占比</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2020</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>2.12</td>
|
||
<td>28.69%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2021</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>6.21</td>
|
||
<td>30.68%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2022</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>-</td>
|
||
<td>8.39</td>
|
||
<td>18.22%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2023</td>
|
||
<td>-6.81%</td>
|
||
<td>-</td>
|
||
<td>9.25</td>
|
||
<td>14.29%</td>
|
||
<td>15.29</td>
|
||
<td>28.72%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>1.03%</td>
|
||
<td>7.84%</td>
|
||
<td>21.46</td>
|
||
<td>131.86%</td>
|
||
<td>18.42</td>
|
||
<td>28.30%</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<div class="chart-container">
|
||
<canvas id="grossMarginChart"></canvas>
|
||
</div>
|
||
|
||
<p><strong>分析:</strong></p>
|
||
<ul>
|
||
<li><strong>毛利率转正</strong>:2024年公司毛利率首次转正至1.03%,同比上升7.84个百分点</li>
|
||
<li><strong>EBITDA大幅增长</strong>:2024年公司EBITDA达到21.46亿元,同比增长131.86%</li>
|
||
<li><strong>研发投入持续高企</strong>:公司研发投入占比长期保持在28%以上,2024年研发投入18.42亿元</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="industry">
|
||
<div class="container">
|
||
<h2>行业市场前景与竞争格局</h2>
|
||
|
||
<h3>3.1 半导体行业概述</h3>
|
||
<div class="card">
|
||
<p>半导体行业是现代电子信息产业的核心,按产品类型可分为集成电路、分立器件、光电器件和传感器四大类。其中,集成电路是最主要的组成部分,占比超过80%。</p>
|
||
|
||
<p><strong>半导体产业链结构:</strong></p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>产业链环节</th>
|
||
<th>主要企业</th>
|
||
<th>技术特点</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>设计</td>
|
||
<td>高通、联发科、华为海思等</td>
|
||
<td>高研发投入、轻资产</td>
|
||
</tr>
|
||
<tr>
|
||
<td>制造</td>
|
||
<td>台积电、中芯国际、芯联集成等</td>
|
||
<td>高资本投入、重资产</td>
|
||
</tr>
|
||
<tr>
|
||
<td>封装测试</td>
|
||
<td>日月光、长电科技等</td>
|
||
<td>劳动力密集、中等技术</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>半导体行业特点:</strong></p>
|
||
<ul>
|
||
<li><strong>技术密集型</strong>:半导体技术研发需要大量的资金和人才投入</li>
|
||
<li><strong>资本密集型</strong>:晶圆制造和封装测试需要大量的设备投入</li>
|
||
<li><strong>周期性波动</strong>:受宏观经济和市场需求影响较大</li>
|
||
<li><strong>区域化发展</strong>:全球半导体产业呈现区域化发展趋势</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<h3>3.2 功率半导体市场前景分析</h3>
|
||
<div class="card">
|
||
<p>功率半导体是芯联集成的核心业务领域,主要应用于新能源汽车、工业控制、消费电子等领域。</p>
|
||
|
||
<h4>3.2.1 市场规模与增长前景</h4>
|
||
<p><strong>全球功率半导体市场规模:</strong></p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>市场规模(亿美元)</th>
|
||
<th>同比增长</th>
|
||
<th>主要驱动因素</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>6260</td>
|
||
<td>18.1%</td>
|
||
<td>AI、智能新能源汽车、新能源等快速发展</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2025E</td>
|
||
<td>7050</td>
|
||
<td>12.6%</td>
|
||
<td>人工智能、物联网、新能源汽车持续增长</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2026E</td>
|
||
<td>7850</td>
|
||
<td>11.3%</td>
|
||
<td>智能汽车、工业自动化、5G应用扩大</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>中国功率半导体市场规模:</strong></p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>市场规模(亿美元)</th>
|
||
<th>同比增长</th>
|
||
<th>主要应用领域</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>300</td>
|
||
<td>14.5%</td>
|
||
<td>新能源汽车、工业电源、消费电子</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2025E</td>
|
||
<td>345</td>
|
||
<td>15.0%</td>
|
||
<td>新能源汽车、光伏、储能、5G基站</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2026E</td>
|
||
<td>395</td>
|
||
<td>14.5%</td>
|
||
<td>智能汽车、工业自动化、数据中心</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>增长驱动因素:</strong></p>
|
||
<ul>
|
||
<li><strong>新能源汽车快速发展</strong>:2024年全球新能源汽车销量突破1700万辆,中国占全球总销量的约70%</li>
|
||
<li><strong>光伏和储能市场扩张</strong>:2024年全球光伏新增装机量突破500GW,中国新增新型储能装机43.7GW</li>
|
||
<li><strong>AI和数据中心需求增长</strong>:AI大模型推动全球算力需求呈爆发式增长</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<h3>3.3 碳化硅(SiC)市场分析</h3>
|
||
<div class="card">
|
||
<p>碳化硅作为第三代半导体材料的代表,具有高击穿电场、高电子饱和速率、高热导率等优异特性,是芯联集成重点布局的战略性业务。</p>
|
||
|
||
<h4>3.3.1 市场规模与增长前景</h4>
|
||
<p><strong>全球碳化硅市场规模:</strong></p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>市场规模(亿美元)</th>
|
||
<th>同比增长</th>
|
||
<th>主要应用领域</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>38.66</td>
|
||
<td>41.37%</td>
|
||
<td>新能源汽车、光伏、储能</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2025E</td>
|
||
<td>58.00</td>
|
||
<td>50.00%</td>
|
||
<td>新能源汽车、工业电源、数据中心</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2026E</td>
|
||
<td>87.00</td>
|
||
<td>50.00%</td>
|
||
<td>智能汽车、航空航天、医疗设备</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>中国碳化硅市场规模:</strong></p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>年份</th>
|
||
<th>市场规模(亿美元)</th>
|
||
<th>占全球比例</th>
|
||
<th>同比增长</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>2024</td>
|
||
<td>15.00</td>
|
||
<td>38.80%</td>
|
||
<td>55.00%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2025E</td>
|
||
<td>23.00</td>
|
||
<td>39.66%</td>
|
||
<td>53.33%</td>
|
||
</tr>
|
||
<tr>
|
||
<td>2026E</td>
|
||
<td>35.00</td>
|
||
<td>40.23%</td>
|
||
<td>52.17%</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>增长驱动因素:</strong></p>
|
||
<ul>
|
||
<li><strong>新能源汽车需求爆发</strong>:碳化硅器件可提高新能源汽车系统效率5%-10%</li>
|
||
<li><strong>光伏和储能需求增长</strong>:碳化硅器件可提高转换效率,降低系统成本</li>
|
||
<li><strong>技术进步推动成本下降</strong>:随着碳化硅晶体生长技术的进步和产能的扩大,成本逐步下降</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="competition">
|
||
<div class="container">
|
||
<h2>芯联集成的竞争优势与劣势</h2>
|
||
|
||
<div class="card">
|
||
<h3>4.1 竞争优势</h3>
|
||
<div class="stat-grid">
|
||
<div class="stat-card">
|
||
<div class="stat-value">1000+</div>
|
||
<div class="stat-label">已申请专利数量</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-value">24万片/月</div>
|
||
<div class="stat-label">总晶圆产能</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-value">30万片/月</div>
|
||
<div class="stat-label">模组产能</div>
|
||
</div>
|
||
</div>
|
||
|
||
<ul>
|
||
<li><strong>技术实力雄厚</strong>:在功率半导体和MEMS领域拥有深厚的技术积累,已申请各类专利超1000件</li>
|
||
<li><strong>产能规模领先</strong>:已建成华东、华中、西南和韩国四大产业基地,总产能达到每月24万片晶圆</li>
|
||
<li><strong>车规级认证齐全</strong>:已获得IATF 16949、ISO 26262等车规级认证,产品符合AEC-Q100、AEC-Q101等标准</li>
|
||
<li><strong>客户资源优质</strong>:已与比亚迪、蔚来、理想等头部车企建立了稳定的合作关系</li>
|
||
<li><strong>产品结构多元</strong>:产品涵盖功率器件、模拟IC、MEMS传感器等多个领域,降低了单一市场风险</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>4.2 竞争劣势</h3>
|
||
<div class="risk-card">
|
||
<h4>尚未实现盈利</h4>
|
||
<p>尽管公司亏损持续收窄,但尚未实现盈利,对公司的长期发展和融资能力可能产生一定影响</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>负债率较高</h4>
|
||
<p>公司资产负债率较高,2024年末为41.68%,虽然同比有所下降,但仍处于较高水平</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>研发投入压力大</h4>
|
||
<p>公司研发投入占比长期保持在28%以上,远高于行业平均水平,对公司的短期盈利能力形成压力</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>国际竞争压力</h4>
|
||
<p>在碳化硅等高端领域,公司面临来自Wolfspeed、安森美、英飞凌等国际巨头的竞争压力</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="future">
|
||
<div class="container">
|
||
<h2>未来展望与机构评级</h2>
|
||
|
||
<h3>5.1 公司未来发展战略</h3>
|
||
<div class="card">
|
||
<ol>
|
||
<li><strong>"新能源+智能化"双轮驱动</strong>:继续深化在新能源汽车和智能化领域的布局</li>
|
||
<li><strong>产能扩张与技术升级</strong>:加速推进8英寸SiC产线量产,2025年下半年实现量产</li>
|
||
<li><strong>产品多元化战略</strong>:继续丰富产品线,加强在模拟IC、MCU、传感器等领域的布局</li>
|
||
<li><strong>全球化布局</strong>:加强国际市场拓展,提高海外市场份额</li>
|
||
<li><strong>盈利提升计划</strong>:通过提高产能利用率、优化产品结构、加强成本控制等措施,实现2026年全面盈利的目标</li>
|
||
</ol>
|
||
</div>
|
||
|
||
<h3>5.2 机构评级与目标价</h3>
|
||
<div class="card">
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>机构名称</th>
|
||
<th>评级</th>
|
||
<th>目标价(元)</th>
|
||
<th>预测2025年营收(亿元)</th>
|
||
<th>预测2025年净利润(亿元)</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>中信证券</td>
|
||
<td>买入</td>
|
||
<td>5.80</td>
|
||
<td>82.40</td>
|
||
<td>-5.48</td>
|
||
</tr>
|
||
<tr>
|
||
<td>浙商证券</td>
|
||
<td>买入</td>
|
||
<td>-</td>
|
||
<td>82.00</td>
|
||
<td>-5.00</td>
|
||
</tr>
|
||
<tr>
|
||
<td>申万宏源</td>
|
||
<td>买入</td>
|
||
<td>-</td>
|
||
<td>82.40</td>
|
||
<td>-</td>
|
||
</tr>
|
||
<tr>
|
||
<td>国信证券</td>
|
||
<td>优于大市</td>
|
||
<td>-</td>
|
||
<td>80.00</td>
|
||
<td>-</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>机构观点汇总:</strong></p>
|
||
<ul>
|
||
<li><strong>营收持续高增长</strong>:机构普遍预测芯联集成2025年营收将达到80-82亿元,同比增长23-26%</li>
|
||
<li><strong>亏损继续收窄</strong>:预计2025年亏损将继续收窄至5亿元左右,亏损同比减少约48%</li>
|
||
<li><strong>毛利率持续改善</strong>:预计2025年公司毛利率将从2024年的1.03%提升至3-5%</li>
|
||
<li><strong>碳化硅业务成为新增长点</strong>:预计2025年碳化硅收入将达到15-20亿元,同比增长50-100%</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<h3>5.3 估值分析</h3>
|
||
<div class="card">
|
||
<p>截至2025年7月18日收盘,芯联集成股价为4.81元,总市值为340.02亿元。</p>
|
||
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>指标</th>
|
||
<th>当前值</th>
|
||
<th>行业平均值</th>
|
||
<th>历史分位数</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>市盈率(PE)</td>
|
||
<td>-</td>
|
||
<td>48.77倍</td>
|
||
<td>-</td>
|
||
</tr>
|
||
<tr>
|
||
<td>市净率(PB)</td>
|
||
<td>2.77倍</td>
|
||
<td>3.25倍</td>
|
||
<td>较低</td>
|
||
</tr>
|
||
<tr>
|
||
<td>市销率(PS)</td>
|
||
<td>5.22倍</td>
|
||
<td>1.56倍</td>
|
||
<td>较高</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><strong>估值分析:</strong></p>
|
||
<ul>
|
||
<li><strong>PB估值处于低位</strong>:当前PB为2.77倍,低于行业平均的3.25倍</li>
|
||
<li><strong>PS估值处于高位</strong>:当前PS为5.22倍,高于行业平均的1.56倍</li>
|
||
<li><strong>机构目标价上行空间较大</strong>:中信证券目标价5.8元,较当前股价有20.58%的上行空间</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="risk">
|
||
<div class="container">
|
||
<h2>投资风险分析</h2>
|
||
|
||
<div class="card">
|
||
<h3>6.1 行业风险</h3>
|
||
<div class="risk-card">
|
||
<h4>行业周期性波动</h4>
|
||
<p>半导体行业具有明显的周期性特征,受宏观经济和市场需求影响较大,若行业进入下行周期,可能对公司业绩产生不利影响</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>市场竞争加剧</h4>
|
||
<p>随着国内外企业在功率半导体和碳化硅领域的布局加速,市场竞争将进一步加剧,可能导致产品价格下降和毛利率下滑</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>技术迭代风险</h4>
|
||
<p>半导体技术迭代速度快,若公司不能及时跟进技术发展,可能导致产品竞争力下降</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>6.2 经营风险</h3>
|
||
<div class="risk-card">
|
||
<h4>持续亏损风险</h4>
|
||
<p>尽管公司亏损持续收窄,但尚未实现盈利,若未来盈利不及预期,可能对公司的长期发展和融资能力产生不利影响</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>产能利用率不足风险</h4>
|
||
<p>公司产能规模较大,若下游需求不及预期,可能导致产能利用率不足,影响公司的盈利能力</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>供应链风险</h4>
|
||
<p>公司部分设备和原材料依赖进口,存在一定的供应链风险,特别是在中美贸易摩擦的背景下</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>6.3 财务风险</h3>
|
||
<div class="risk-card">
|
||
<h4>负债率较高风险</h4>
|
||
<p>公司资产负债率较高,2024年末为41.68%,虽然同比有所下降,但仍处于较高水平</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>应收账款回收风险</h4>
|
||
<p>截至2024年末,公司应收账款为45.81亿元,同比增长22.47%,存在应收账款回收风险</p>
|
||
</div>
|
||
|
||
<div class="risk-card">
|
||
<h4>存货管理风险</h4>
|
||
<p>截至2024年末,公司存货为35.02亿元,同比增长44.98%,存在存货跌价和管理风险</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="recommendation">
|
||
<div class="container">
|
||
<h2>投资建议与综合判断</h2>
|
||
|
||
<div class="card">
|
||
<h3>7.1 投资建议</h3>
|
||
<div class="key-point">
|
||
<h4>核心观点</h4>
|
||
<p>芯联集成作为国内领先的特色工艺晶圆代工企业,在功率半导体和碳化硅领域已形成显著竞争优势。公司营收持续高速增长,亏损持续收窄,2024年毛利率首次转正,标志着盈利拐点的出现。随着车载业务和碳化硅业务的持续增长,以及产能利用率提高和成本控制的加强,公司有望在2026年实现全面盈利。</p>
|
||
</div>
|
||
|
||
<div class="stat-card" style="background-color: rgba(46, 204, 113, 0.1); border-left: 4px solid var(--accent-color);">
|
||
<div class="stat-value">买入</div>
|
||
<div class="stat-label">目标价:5.8元</div>
|
||
<div class="stat-label">当前价:4.81元</div>
|
||
<div class="stat-label">上行空间:20.58%</div>
|
||
</div>
|
||
|
||
<p><strong>投资时机:</strong>建议在当前股价基础上分批建仓,可在4.5元以下加大配置,中长期持有,分享公司在碳化硅和功率半导体领域的成长红利。</p>
|
||
</div>
|
||
|
||
<div class="card">
|
||
<h3>7.2 综合判断</h3>
|
||
<div class="stat-grid">
|
||
<div class="stat-card">
|
||
<i class="fas fa-chart-line" style="font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 15px;"></i>
|
||
<div class="stat-label">行业地位突出</div>
|
||
<p>全球晶圆代工"第一梯队",跻身全球专属晶圆代工榜单前十</p>
|
||
</div>
|
||
<div class="stat-card">
|
||
<i class="fas fa-chart-pie" style="font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 15px;"></i>
|
||
<div class="stat-label">业务结构优化</div>
|
||
<p>车载业务占比超过50%,高端消费业务同比增长66%</p>
|
||
</div>
|
||
<div class="stat-card">
|
||
<i class="fas fa-microchip" style="font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 15px;"></i>
|
||
<div class="stat-label">技术实力雄厚</div>
|
||
<p>已申请各类专利超1000件,在车规级IGBT和SiC MOSFET等领域具有技术优势</p>
|
||
</div>
|
||
<div class="stat-card">
|
||
<i class="fas fa-arrow-up" style="font-size: 2.5rem; color: var(--accent-color); margin-bottom: 15px;"></i>
|
||
<div class="stat-label">盈利拐点已现</div>
|
||
<p>2024年毛利率首次转正至1.03%,2025年一季度进一步提升至3.67%</p>
|
||
</div>
|
||
</div>
|
||
|
||
<p><strong>未来增长动力:</strong></p>
|
||
<ol>
|
||
<li><strong>碳化硅业务快速增长</strong>:8英寸SiC产线2025年下半年量产,预计2025年SiC收入将达到15-20亿元</li>
|
||
<li><strong>车载业务持续增长</strong>:随着新能源汽车渗透率提高,车规级功率器件需求旺盛</li>
|
||
<li><strong>模拟IC业务快速发展</strong>:成为公司新的增长点</li>
|
||
</ol>
|
||
|
||
<p><strong>结论:</strong>尽管芯联集成面临行业周期性波动、市场竞争加剧和持续亏损等风险,但其在功率半导体和碳化硅领域的竞争优势明显,营收持续高速增长,盈利拐点已现,未来增长可期。公司当前估值处于历史低位,机构目标价上行空间较大,具备较好的投资价值。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<footer>
|
||
<div class="container footer-content">
|
||
<div class="social-links">
|
||
<a href="#"><i class="fab fa-twitter"></i></a>
|
||
<a href="#"><i class="fab fa-linkedin"></i></a>
|
||
<a href="#"><i class="fab fa-facebook"></i></a>
|
||
</div>
|
||
<p>芯联集成(688469.SH)投资价值深度研究报告</p>
|
||
<p class="copyright">© 2025 投资研究分析平台. 保留所有权利。</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<div class="back-to-top">
|
||
<i class="fas fa-arrow-up"></i>
|
||
</div>
|
||
|
||
<script>
|
||
// 导航菜单切换
|
||
const menuToggle = document.querySelector('.menu-toggle');
|
||
const navLinks = document.querySelector('.nav-links');
|
||
|
||
menuToggle.addEventListener('click', () => {
|
||
navLinks.classList.toggle('active');
|
||
});
|
||
|
||
// 平滑滚动
|
||
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||
anchor.addEventListener('click', function(e) {
|
||
e.preventDefault();
|
||
|
||
const targetId = this.getAttribute('href');
|
||
const targetElement = document.querySelector(targetId);
|
||
|
||
if (targetElement) {
|
||
window.scrollTo({
|
||
top: targetElement.offsetTop - 70,
|
||
behavior: 'smooth'
|
||
});
|
||
|
||
// 关闭移动菜单
|
||
navLinks.classList.remove('active');
|
||
}
|
||
});
|
||
});
|
||
|
||
// 返回顶部按钮
|
||
const backToTopButton = document.querySelector('.back-to-top');
|
||
|
||
window.addEventListener('scroll', () => {
|
||
if (window.pageYOffset > 300) {
|
||
backToTopButton.classList.add('visible');
|
||
} else {
|
||
backToTopButton.classList.remove('visible');
|
||
}
|
||
});
|
||
|
||
backToTopButton.addEventListener('click', () => {
|
||
window.scrollTo({
|
||
top: 0,
|
||
behavior: 'smooth'
|
||
});
|
||
});
|
||
|
||
// 图表初始化
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
// 营收增长趋势图
|
||
const revenueCtx = document.getElementById('revenueChart').getContext('2d');
|
||
const revenueChart = new Chart(revenueCtx, {
|
||
type: 'line',
|
||
data: {
|
||
labels: ['2020', '2021', '2022', '2023', '2024'],
|
||
datasets: [
|
||
{
|
||
label: '营收(亿元)',
|
||
data: [7.39, 20.24, 46.06, 53.24, 65.09],
|
||
backgroundColor: 'rgba(52, 152, 219, 0.2)',
|
||
borderColor: 'rgba(52, 152, 219, 1)',
|
||
borderWidth: 2,
|
||
tension: 0.3
|
||
}
|
||
]
|
||
},
|
||
options: {
|
||
responsive: true,
|
||
maintainAspectRatio: false,
|
||
plugins: {
|
||
legend: {
|
||
position: 'top',
|
||
},
|
||
tooltip: {
|
||
mode: 'index',
|
||
intersect: false,
|
||
}
|
||
},
|
||
scales: {
|
||
y: {
|
||
beginAtZero: true,
|
||
title: {
|
||
display: true,
|
||
text: '亿元'
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
// 净利润变化图
|
||
const netProfitCtx = document.getElementById('netProfitChart').getContext('2d');
|
||
const netProfitChart = new Chart(netProfitCtx, {
|
||
type: 'bar',
|
||
data: {
|
||
labels: ['2020', '2021', '2022', '2023', '2024'],
|
||
datasets: [
|
||
{
|
||
label: '净利润(亿元)',
|
||
data: [-13.66, -12.36, -10.88, -19.58, -9.62],
|
||
backgroundColor: [
|
||
'rgba(231, 76, 60, 0.6)',
|
||
'rgba(231, 76, 60, 0.6)',
|
||
'rgba(231, 76, 60, 0.6)',
|
||
'rgba(231, 76, 60, 0.6)',
|
||
'rgba(46, 204, 113, 0.6)'
|
||
],
|
||
borderColor: [
|
||
'rgba(231, 76, 60, 1)',
|
||
'rgba(231, 76, 60, 1)',
|
||
'rgba(231, 76, 60, 1)',
|
||
'rgba(231, 76, 60, 1)',
|
||
'rgba(46, 204, 113, 1)'
|
||
],
|
||
borderWidth: 1
|
||
}
|
||
]
|
||
},
|
||
options: {
|
||
responsive: true,
|
||
maintainAspectRatio: false,
|
||
plugins: {
|
||
legend: {
|
||
position: 'top',
|
||
},
|
||
tooltip: {
|
||
mode: 'index',
|
||
intersect: false,
|
||
}
|
||
},
|
||
scales: {
|
||
y: {
|
||
beginAtZero: false,
|
||
title: {
|
||
display: true,
|
||
text: '亿元'
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
// 毛利率变化图
|
||
const grossMarginCtx = document.getElementById('grossMarginChart').getContext('2d');
|
||
const grossMarginChart = new Chart(grossMarginCtx, {
|
||
type: 'line',
|
||
data: {
|
||
labels: ['2020', '2021', '2022', '2023', '2024'],
|
||
datasets: [
|
||
{
|
||
label: '毛利率(%)',
|
||
data: [null, null, null, -6.81, 1.03],
|
||
backgroundColor: 'rgba(46, 204, 113, 0.2)',
|
||
borderColor: 'rgba(46, 204, 113, 1)',
|
||
borderWidth: 2,
|
||
tension: 0.3
|
||
}
|
||
]
|
||
},
|
||
options: {
|
||
responsive: true,
|
||
maintainAspectRatio: false,
|
||
plugins: {
|
||
legend: {
|
||
position: 'top',
|
||
},
|
||
tooltip: {
|
||
mode: 'index',
|
||
intersect: false,
|
||
}
|
||
},
|
||
scales: {
|
||
y: {
|
||
beginAtZero: false,
|
||
title: {
|
||
display: true,
|
||
text: '百分比'
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
// 业务板块收入占比图
|
||
const revenueCompositionCtx = document.getElementById('revenueCompositionChart').getContext('2d');
|
||
const revenueCompositionChart = new Chart(revenueCompositionCtx, {
|
||
type: 'doughnut',
|
||
data: {
|
||
labels: ['车载业务', '高端消费', '工控业务'],
|
||
datasets: [
|
||
{
|
||
data: [51.78, 34, 14.22],
|
||
backgroundColor: [
|
||
'rgba(52, 152, 219, 0.8)',
|
||
'rgba(46, 204, 113, 0.8)',
|
||
'rgba(241, 196, 15, 0.8)'
|
||
],
|
||
borderColor: [
|
||
'rgba(52, 152, 219, 1)',
|
||
'rgba(46, 204, 113, 1)',
|
||
'rgba(241, 196, 15, 1)'
|
||
],
|
||
borderWidth: 1
|
||
}
|
||
]
|
||
},
|
||
options: {
|
||
responsive: true,
|
||
maintainAspectRatio: false,
|
||
plugins: {
|
||
legend: {
|
||
position: 'right',
|
||
},
|
||
tooltip: {
|
||
callbacks: {
|
||
label: function(context) {
|
||
const label = context.label || '';
|
||
const value = context.raw || 0;
|
||
return `${label}: ${value}%`;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|