1
This commit is contained in:
@@ -1,25 +1,236 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="our-plan-page">
|
||||
<ihead></ihead>
|
||||
<div class="contentPage">
|
||||
|
||||
<div class="contentTable">
|
||||
<router-view></router-view>
|
||||
|
||||
<!-- 页面横幅 -->
|
||||
<div class="page-banner">
|
||||
<div class="banner-content">
|
||||
<div class="container">
|
||||
<h1 class="banner-title">我们的方案</h1>
|
||||
<p class="banner-subtitle">专业解决方案,助力企业数字化转型</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 主要内容 -->
|
||||
<div class="main-content">
|
||||
<div class="container">
|
||||
<div class="content-section">
|
||||
<h3 class="section-title">核心服务</h3>
|
||||
<div class="services-grid">
|
||||
<div class="service-card">
|
||||
<div class="service-icon">🏗️</div>
|
||||
<h4>智能建筑</h4>
|
||||
<p>运用先进技术打造智能化建筑,提升建筑管理效率和用户体验。</p>
|
||||
<router-link to="/ourPlan/estateManagement" class="service-link">了解更多</router-link>
|
||||
</div>
|
||||
|
||||
<div class="service-card">
|
||||
<div class="service-icon">🌐</div>
|
||||
<h4>物联网</h4>
|
||||
<p>构建完整的物联网生态系统,实现设备互联互通和智能控制。</p>
|
||||
<router-link to="/ourPlan/iot" class="service-link">了解更多</router-link>
|
||||
</div>
|
||||
|
||||
<div class="service-card">
|
||||
<div class="service-icon">⚙️</div>
|
||||
<h4>设施管理</h4>
|
||||
<p>提供全面的设施管理解决方案,确保设备高效运行。</p>
|
||||
<router-link to="/ourPlan/facilityManagement" class="service-link">了解更多</router-link>
|
||||
</div>
|
||||
|
||||
<div class="service-card">
|
||||
<div class="service-icon">🤖</div>
|
||||
<h4>AI解决方案</h4>
|
||||
<p>运用人工智能技术,为企业提供智能化决策支持。</p>
|
||||
<router-link to="/ourPlan/aiSolutions" class="service-link">了解更多</router-link>
|
||||
</div>
|
||||
|
||||
<div class="service-card">
|
||||
<div class="service-icon">🔧</div>
|
||||
<h4>技术集成</h4>
|
||||
<p>整合多种技术平台,构建统一的技术架构体系。</p>
|
||||
<router-link to="/ourPlan/technologyIntegration" class="service-link">了解更多</router-link>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content-section">
|
||||
<h3 class="section-title">为什么选择我们?</h3>
|
||||
<div class="features">
|
||||
<div class="feature-item">
|
||||
<h4>专业团队</h4>
|
||||
<p>拥有丰富的行业经验和专业技术能力</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h4>创新技术</h4>
|
||||
<p>持续关注前沿技术,提供最新解决方案</p>
|
||||
</div>
|
||||
<div class="feature-item">
|
||||
<h4>优质服务</h4>
|
||||
<p>全程专业服务,确保项目成功实施</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ifooter></ifooter>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ihead from '@/components/ihead.vue'
|
||||
import ifooter from '@/components/ifooter.vue'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: 'Welcome to Your Vue.js App',
|
||||
};
|
||||
},
|
||||
};
|
||||
name: 'ourPlan',
|
||||
components: {
|
||||
ihead,
|
||||
ifooter
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.our-plan-page {
|
||||
min-height: 100vh;
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.page-banner {
|
||||
background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
|
||||
color: white;
|
||||
padding: 80px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.banner-title {
|
||||
font-size: 3rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.banner-subtitle {
|
||||
font-size: 1.2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.content-section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 2rem;
|
||||
color: #2c3e50;
|
||||
margin-bottom: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background: white;
|
||||
padding: 30px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.service-card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.service-card h4 {
|
||||
color: #2c3e50;
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.service-card p {
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.service-link {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background: #3498db;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 25px;
|
||||
transition: all 0.3s ease;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.service-link:hover {
|
||||
background: #2980b9;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.features {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.feature-item {
|
||||
text-align: center;
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
.feature-item h4 {
|
||||
color: #3498db;
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.feature-item p {
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.banner-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.banner-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.features {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user