修复P0系统性价格错误:配件价格调整及SKU配置更新

1. 配件清单更新:
   - 新增3217U CPU价格定义:¥55(i3-2代)
   - 新增5005U CPU价格定义:¥150(i3-5代)
   - 确认3855U正确价格:¥80

2. SKU价格修正(D3-4G/8G、mSATA-32G/64G):
   - D3-4G: ¥38 → ¥25
   - D3-8G: ¥120 → ¥75
   - mSATA-32G: ¥25 → ¥20
   - mSATA-64G: ¥45 → ¥40

3. CPU价格修正:
   - 3217U: ¥65 → ¥55
   - 5005U: ¥80 → ¥150
   - 3855U: ¥75 → ¥80

4. Linux主机SKU更新:
   - 仅保留2G-16G配置
   - 3855U CPU价格修正

5. 修复文件统计:
   - fys亚克力-双:12个SKU
   - fjx金属3.5寸小:24个SKU
   - fjd金属3.5寸大:24个SKU
   - 龙虾盒子:6个SKU
   - 挂机宝:24个SKU
   - win10小主机:24个SKU
   - 总计:102+个文件
This commit is contained in:
12600k-rog-d4
2026-04-23 00:23:11 +08:00
parent 67ec5b96a4
commit 90d5c516c9
153 changed files with 1302 additions and 479 deletions

View File

@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>使用场景 - Linux主机</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #e6fff0 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(17,153,142,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #81e6d9;
}
.title {
font-size: 56px;
font-weight: bold;
color: #11998e;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(17,153,142,0.2);
}
.scene-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.scene-item {
background: linear-gradient(135deg, #e6fff0 0%, #c6f6d5 100%);
border-radius: 15px;
padding: 30px;
text-align: center;
box-shadow: 0 4px 15px rgba(17,153,142,0.15);
border: 1px solid #9ae6b4;
}
.scene-icon {
font-size: 72px;
margin-bottom: 20px;
}
.scene-item h3 {
font-size: 30px;
color: #11998e;
margin-bottom: 15px;
}
.scene-item p {
font-size: 20px;
color: #276749;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">使用场景</div>
<div class="scene-grid">
<div class="scene-item">
<div class="scene-icon">🌐</div>
<h3>网站服务器</h3>
<p>搭建个人网站、博客、企业官网LNMP环境一键部署</p>
</div>
<div class="scene-item">
<div class="scene-icon">💻</div>
<h3>开发环境</h3>
<p>代码调试、测试部署、Git仓库随时随地开发</p>
</div>
<div class="scene-item">
<div class="scene-icon">🐳</div>
<h3>Docker容器</h3>
<p>运行各类Docker应用快速部署服务</p>
</div>
<div class="scene-item">
<div class="scene-icon">📊</div>
<h3>数据库服务</h3>
<p>MySQL、PostgreSQL、MongoDB数据存储首选</p>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 KiB

View File

@@ -0,0 +1,100 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>功能描述 - Linux主机</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #e0f7ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(79,172,254,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #7dd3fc;
}
.title {
font-size: 56px;
font-weight: bold;
color: #0284c7;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(2,132,199,0.2);
}
.feature-list {
display: flex;
flex-direction: column;
gap: 25px;
}
.feature-item {
background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 100%);
border-radius: 15px;
padding: 25px 30px;
display: flex;
align-items: center;
gap: 25px;
box-shadow: 0 4px 15px rgba(2,132,199,0.15);
border: 1px solid #93c5fd;
}
.feature-icon {
font-size: 56px;
flex-shrink: 0;
}
.feature-content h3 {
font-size: 28px;
color: #0369a1;
margin-bottom: 8px;
}
.feature-content p {
font-size: 20px;
color: #0c4a6e;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">功能描述</div>
<div class="feature-list">
<div class="feature-item">
<div class="feature-icon">🚀</div>
<div class="feature-content">
<h3>预装LNMP开发环境</h3>
<p>预装Nginx、Apache、MySQL、PHP开箱即用快速搭建网站</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">📝</div>
<div class="feature-content">
<h3>多语言开发支持</h3>
<p>完美支持Python、Java、Go、Node.js、Rust等主流开发语言</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">🔐</div>
<div class="feature-content">
<h3>SSH远程访问</h3>
<p>支持SSH远程登录随时随地管理服务器进行开发调试</p>
</div>
</div>
<div class="feature-item">
<div class="feature-icon">📂</div>
<div class="feature-content">
<h3>Git代码仓库</h3>
<p>内置Git服务轻松管理代码版本支持团队协作开发</p>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 KiB

View File

@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>商品卖点 - Linux主机</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f3e7ff 100%);
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(102,126,234,0.3), inset 0 2px 0 rgba(255,255,255,1);
border: 2px solid #a5b4fc;
}
.title {
font-size: 56px;
font-weight: bold;
color: #667eea;
text-align: center;
margin-bottom: 40px;
text-shadow: 0 2px 10px rgba(102,126,234,0.2);
}
.points-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.point-item {
background: linear-gradient(135deg, #f3e7ff 0%, #e0d4ff 100%);
border-radius: 15px;
padding: 30px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 15px rgba(102,126,234,0.15);
border: 1px solid #c4b5fd;
}
.point-icon {
font-size: 60px;
flex-shrink: 0;
}
.point-content h3 {
font-size: 28px;
color: #667eea;
margin-bottom: 10px;
}
.point-content p {
font-size: 20px;
color: #5a4b7a;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<div class="title">商品卖点</div>
<div class="points-grid">
<div class="point-item">
<div class="point-icon">🐧</div>
<div class="point-content">
<h3>Linux系统</h3>
<p>预装Linux系统稳定高效适合服务器和开发环境</p>
</div>
</div>
<div class="point-item">
<div class="point-icon"></div>
<div class="point-content">
<h3>LNMP环境</h3>
<p>支持Nginx/Apache、MySQL、PHP建站首选</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💻</div>
<div class="point-content">
<h3>多语言支持</h3>
<p>支持Python、Java、Go、Node.js等主流开发语言</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">🔧</div>
<div class="point-content">
<h3>开发利器</h3>
<p>完美支持Git、Docker、VS Code Server等开发工具</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">📦</div>
<div class="point-content">
<h3>便携小巧</h3>
<p>2.5寸机箱,体积小巧,节省桌面空间</p>
</div>
</div>
<div class="point-item">
<div class="point-icon">💰</div>
<div class="point-content">
<h3>超高性价比</h3>
<p>专业开发服务器,价格亲民,性价比极高</p>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

View File

@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>商品实拍图 - Linux主机</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 40px;
}
.image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
flex: 1;
}
.image-card {
background: linear-gradient(135deg, #fff5f7 0%, #fffbeb 100%);
border-radius: 15px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border: 2px solid #fed7aa;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.image-card img {
width: 100%;
height: 280px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}
.image-label {
font-size: 24px;
color: #9a3412;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">商品实拍图</div>
<div class="image-grid">
<div class="image-card">
<img src="../image/正面.jpg" alt="正面展示">
<div class="image-label">正面展示</div>
</div>
<div class="image-card">
<img src="../image/接口.jpg" alt="接口展示">
<div class="image-label">接口展示</div>
</div>
<div class="image-card">
<img src="../image/包装1.jpg" alt="包装展示">
<div class="image-label">包装展示</div>
</div>
<div class="image-card">
<img src="../image/配件清单.jpg" alt="配件展示">
<div class="image-label">配件展示</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 770 KiB

View File

@@ -0,0 +1,146 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1000, height=1000">
<title>配置清单 - Linux主机</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1000px;
height: 1000px;
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
padding: 40px;
}
.container {
width: 100%;
height: 100%;
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
display: flex;
flex-direction: column;
}
.title {
font-size: 56px;
font-weight: bold;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.subtitle {
font-size: 28px;
color: #666;
text-align: center;
margin-bottom: 50px;
}
.config-section {
margin-bottom: 40px;
flex: 1;
}
.section-title {
font-size: 32px;
font-weight: bold;
color: #f5576c;
margin-bottom: 20px;
padding-left: 20px;
border-left: 5px solid #f5576c;
}
.config-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.config-item {
background: linear-gradient(135deg, #fff5f7 0%, #ffe0e6 100%);
padding: 20px 25px;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.config-label {
font-size: 24px;
color: #333;
font-weight: bold;
}
.config-value {
font-size: 24px;
color: #f5576c;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<div class="title">配置清单</div>
<div class="subtitle">Linux主机 开发服务器系列</div>
<div class="config-section">
<div class="section-title">CPU处理器可选</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">Intel 1037U</span>
<span class="config-value">双核 1.8GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel i3-3217U</span>
<span class="config-value">双核 1.8GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel i3-5005U</span>
<span class="config-value">双核 2.0GHz</span>
</div>
<div class="config-item">
<span class="config-label">Intel 3855U</span>
<span class="config-value">双核 1.6GHz</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">内存容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">DDR3 4GB</span>
<span class="config-value">入门配置</span>
</div>
<div class="config-item">
<span class="config-label">DDR3 8GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">系统盘容量(可选)</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">mSATA 64GB</span>
<span class="config-value">标准配置</span>
</div>
<div class="config-item">
<span class="config-label">mSATA 128GB</span>
<span class="config-value">推荐配置</span>
</div>
</div>
</div>
<div class="config-section">
<div class="section-title">可选配件</div>
<div class="config-grid">
<div class="config-item">
<span class="config-label">无线网卡</span>
<span class="config-value">可选</span>
</div>
<div class="config-item">
<span class="config-label">HD 500G硬盘</span>
<span class="config-value">可选</span>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB