10 changed files with 248 additions and 7 deletions
-
12src/components/AboutUs.vue
-
33src/components/Awards.vue
-
6src/components/CaseShow.vue
-
35src/components/Cooperation.vue
-
24src/components/HeadLine.vue
-
42src/components/MechanicalDrive.vue
-
31src/components/News.vue
-
36src/components/OneStop.vue
-
20src/components/Track.vue
-
16src/pages/index.vue
@ -0,0 +1,12 @@ |
|||
<template> |
|||
<div class="about_us_card_container">about us</div> |
|||
</template> |
|||
|
|||
<script setup></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.about_us_card_container { |
|||
padding: 58px 34px 83px 34px; |
|||
background: #e6effc; |
|||
} |
|||
</style> |
@ -0,0 +1,33 @@ |
|||
<template> |
|||
<div class="awards_container"> |
|||
<div class="header_wrap"> |
|||
<HeadLine title="荣获奖项" /> |
|||
</div> |
|||
<div class="award_cards"> |
|||
<div class="card"></div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import HeadLine from 'cpns/HeadLine' |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.awards_container { |
|||
.header_wrap { |
|||
padding: 33px 0; |
|||
background: #edf0f6; |
|||
} |
|||
.award_cards { |
|||
display: grid; |
|||
grid-template-columns: repeat(3, 1fr); |
|||
grid-template-rows: repeat(2, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
height: 125px; |
|||
background: #f3f4f7; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,35 @@ |
|||
<template> |
|||
<div class="cooperation_container"> |
|||
<div class="header_wrap"> |
|||
<HeadLine |
|||
title="合作客户" |
|||
line1="医疗企业 互联网公司 智能硬件公司 科研院所 工业自动化企业" |
|||
/> |
|||
</div> |
|||
<div class="client_wrap"> |
|||
<div class="card"></div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import HeadLine from 'cpns/HeadLine' |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.cooperation_container { |
|||
.header_wrap { |
|||
padding: 37px 0 37px 0; |
|||
} |
|||
.client_wrap { |
|||
display: grid; |
|||
grid-template-columns: repeat(4, 1fr); |
|||
grid-template-rows: repeat(5, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
height: 94px; |
|||
background: #f3f3f3; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,42 @@ |
|||
<template> |
|||
<div class="mechanical_drive_container"> |
|||
<div class="header_wrap"> |
|||
<HeadLine |
|||
title="机械传动专家" |
|||
line1="我们精通气动、液动、电动等各种传动机构" |
|||
line2="完成机械所需的各种动作" |
|||
/> |
|||
</div> |
|||
<div class="grid_layouts"> |
|||
<div class="card"></div> |
|||
<div class="card"></div> |
|||
<div class="card"></div> |
|||
<div class="card"></div> |
|||
<div class="card"></div> |
|||
<div class="card"></div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import HeadLine from 'cpns/HeadLine' |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.mechanical_drive_container { |
|||
.header_wrap { |
|||
padding: 39px 0 39px 0; |
|||
background: #ebeff7; |
|||
} |
|||
.grid_layouts { |
|||
display: grid; |
|||
grid-template-columns: repeat(3, 1fr); |
|||
grid-template-rows: repeat(5, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
height: 87px; |
|||
background: #a1abfb; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,31 @@ |
|||
<template> |
|||
<div class="news_container"> |
|||
<div class="header_wrap"> |
|||
<HeadLine title="新闻/NEWS" line1="获取行业最新咨询" /> |
|||
</div> |
|||
<div class="card_wrap"> |
|||
<div class="card"></div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import HeadLine from 'cpns/HeadLine' |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.news_container { |
|||
.header_wrap { |
|||
padding: 26px 0 23px 0; |
|||
} |
|||
.card_wrap { |
|||
display: grid; |
|||
grid-template-columns: repeat(3, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
background: #000; |
|||
height: 101px; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,36 @@ |
|||
<template> |
|||
<div class="one_stop_container"> |
|||
<div class="header_wrap"> |
|||
<HeadLine |
|||
title="一站式设计+制造的产业链模式" |
|||
line1="旗下开设独资机箱壳子批量加工中心,消除了客户从概念导入到产品实现全程无障碍之忧" |
|||
line2="助力产品设计方案快速落地,以最快速度截获市场先机" |
|||
/> |
|||
</div> |
|||
<div class="design_cards"> |
|||
<div class="card"></div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import HeadLine from 'cpns/HeadLine' |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.one_stop_container { |
|||
.header_wrap { |
|||
padding: 56px 31px 47px 31px; |
|||
} |
|||
.design_cards { |
|||
display: grid; |
|||
grid-template-columns: repeat(2, 1fr); |
|||
grid-template-rows: repeat(3, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
height: 88px; |
|||
background: #ddd; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,20 @@ |
|||
<template> |
|||
<div class="track_container"> |
|||
<div class="card"></div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.track_container { |
|||
display: grid; |
|||
grid-template-columns: repeat(3, 1fr); |
|||
grid-template-rows: repeat(3, 1fr); |
|||
.card { |
|||
width: 100%; |
|||
height: 125px; |
|||
background: #4056fa; |
|||
} |
|||
} |
|||
</style> |
@ -1,13 +1,27 @@ |
|||
<template> |
|||
<div> |
|||
<div class="home_container"> |
|||
<Summarize /> |
|||
<CaseShow /> |
|||
<MechanicalDrive /> |
|||
<AboutUs /> |
|||
<Track /> |
|||
<OneStop /> |
|||
<News /> |
|||
<Cooperation /> |
|||
<Awards /> |
|||
</div> |
|||
</template> |
|||
|
|||
<script setup> |
|||
import Summarize from 'cpns/Summarize' |
|||
import CaseShow from 'cpns/CaseShow' |
|||
import MechanicalDrive from 'cpns/MechanicalDrive' |
|||
import AboutUs from 'cpns/AboutUs' |
|||
import Track from 'cpns/Track' |
|||
import OneStop from 'cpns/OneStop' |
|||
import News from 'cpns/News' |
|||
import Cooperation from 'cpns/Cooperation' |
|||
import Awards from 'cpns/Awards' |
|||
</script> |
|||
|
|||
<style></style> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue