Commit b2e6a4c7 authored by 吕 成东's avatar 吕 成东
Browse files

更换 头部组件

parent c70a8f43
Pipeline #3081 canceled with stages
...@@ -8,5 +8,4 @@ import { RouterView } from 'vue-router' ...@@ -8,5 +8,4 @@ import { RouterView } from 'vue-router'
<style> <style>
@import './styles/style.css'; @import './styles/style.css';
@import './styles/swiper.min.css';
</style> </style>
\ No newline at end of file
This diff is collapsed.
<script setup> <script setup>
import TheHeader from '../components/TheHeader.vue' import Header from '../components/Header.vue'
import TheFooter from '../components/TheFooter.vue' import Footer from '../components/Footer.vue'
</script> </script>
<template> <template>
<div class="about"> <div class="about">
<TheHeader /> <Header />
<div class="center-width" style="padding: 50px 0; min-height: 400px;"> <div class="center-width" style="padding: 50px 0; min-height: 400px;">
<h1>关于我们</h1> <h1>关于我们</h1>
<p>此页面正在开发中...</p> <p>此页面正在开发中...</p>
</div> </div>
<TheFooter /> <Footer />
</div> </div>
</template> </template>
\ No newline at end of file
<script setup> <script setup>
import TheHeader from '../components/TheHeader.vue' import Header from '../components/Header.vue'
import TheFooter from '../components/TheFooter.vue' import Footer from '../components/Footer.vue'
</script> </script>
<template> <template>
<div class="customers"> <div class="customers">
<TheHeader /> <Header />
<div class="center-width" style="padding: 50px 0; min-height: 400px;"> <div class="center-width" style="padding: 50px 0; min-height: 400px;">
<h1>客户名录</h1> <h1>客户名录</h1>
<p>此页面正在开发中...</p> <p>此页面正在开发中...</p>
</div> </div>
<TheFooter /> <Footer />
</div> </div>
</template> </template>
\ No newline at end of file \ No newline at end of file
<script setup> <script setup>
import TheHeader from '../components/TheHeader.vue' import Header from '../components/Header.vue'
import TheFooter from '../components/TheFooter.vue' import Footer from '../components/Footer.vue'
</script> </script>
<template> <template>
<div class="join"> <div class="join">
<TheHeader /> <Header />
<div class="center-width" style="padding: 50px 0; min-height: 400px;"> <div class="center-width" style="padding: 50px 0; min-height: 400px;">
<h1>加入我们</h1> <h1>加入我们</h1>
<p>此页面正在开发中...</p> <p>此页面正在开发中...</p>
</div> </div>
<TheFooter /> <Footer />
</div> </div>
</template> </template>
\ No newline at end of file
<script setup> <script setup>
import TheHeader from '../components/TheHeader.vue' import Header from '../components/Header.vue'
import TheFooter from '../components/TheFooter.vue' import Footer from '../components/Footer.vue'
</script> </script>
<template> <template>
<div class="news"> <div class="news">
<TheHeader /> <Header />
<div class="center-width" style="padding: 50px 0; min-height: 400px;"> <div class="center-width" style="padding: 50px 0; min-height: 400px;">
<h1>新闻资讯</h1> <h1>新闻资讯</h1>
<p>此页面正在开发中...</p> <p>此页面正在开发中...</p>
</div> </div>
<TheFooter /> <Footer />
</div> </div>
</template> </template>
\ No newline at end of file
<script setup> <script setup>
import TheHeader from '../components/TheHeader.vue' import Header from '../components/Header.vue'
import TheFooter from '../components/TheFooter.vue' import Footer from '../components/Footer.vue'
</script> </script>
<template> <template>
<div class="products"> <div class="products">
<TheHeader /> <Header />
<div class="center-width" style="padding: 50px 0; min-height: 400px;"> <div class="center-width" style="padding: 50px 0; min-height: 400px;">
<h1>产品技术</h1> <h1>产品技术</h1>
<p>此页面正在开发中...</p> <p>此页面正在开发中...</p>
</div> </div>
<TheFooter /> <Footer />
</div> </div>
</template> </template>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment