118 lines
3.3 KiB
HTML
118 lines
3.3 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>MRP运算结果管理</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: #f5f5f5;
|
|
}
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
.header h1 {
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
.header p {
|
|
margin: 8px 0 0 0;
|
|
opacity: 0.9;
|
|
}
|
|
.content {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
.info-box {
|
|
background: #f0f9ff;
|
|
border: 1px solid #b3d8ff;
|
|
border-radius: 6px;
|
|
padding: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.info-box h3 {
|
|
margin: 0 0 12px 0;
|
|
color: #409eff;
|
|
}
|
|
.info-box p {
|
|
margin: 8px 0;
|
|
color: #606266;
|
|
}
|
|
.button-group {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-top: 20px;
|
|
}
|
|
.btn {
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
transition: all 0.3s;
|
|
}
|
|
.btn-primary {
|
|
background: #409eff;
|
|
color: white;
|
|
}
|
|
.btn-primary:hover {
|
|
background: #66b1ff;
|
|
}
|
|
.btn-info {
|
|
background: #909399;
|
|
color: white;
|
|
}
|
|
.btn-info:hover {
|
|
background: #a6a9ad;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>📊 MRP运算结果核算</h1>
|
|
<p>物料需求计划运算结果查询与分析</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="info-box">
|
|
<h3>🚀 快速访问</h3>
|
|
<p><strong>独立访问地址:</strong> <code>/MRP</code></p>
|
|
<p><strong>功能说明:</strong> 无需登录即可访问MRP运算结果管理页面</p>
|
|
<p><strong>主要功能:</strong></p>
|
|
<ul>
|
|
<li>生产令号选择与搜索</li>
|
|
<li>MRP运算执行</li>
|
|
<li>运算结果查看与分析</li>
|
|
<li>数据导出功能</li>
|
|
<li>统计信息展示</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="button-group">
|
|
<a href="/MRP" class="btn btn-primary">🎯 进入MRP页面</a>
|
|
<a href="/" class="btn btn-info">🏠 返回首页</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|