初步上线测试
This commit is contained in:
parent
74c740a3f5
commit
1a7d09b65c
@ -1,8 +1,12 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import {defineComponent} from 'vue'
|
import {defineComponent} from 'vue'
|
||||||
|
import ContactUs from "@/components/ContactUs.vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "ExampleItem"
|
name: "ExampleItem",
|
||||||
|
components:{
|
||||||
|
ContactUs
|
||||||
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -15,6 +19,7 @@ export default defineComponent({
|
|||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
<ContactUs></ContactUs>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|||||||
@ -1,8 +1,14 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import {defineComponent} from 'vue'
|
import {defineComponent} from 'vue'
|
||||||
|
import ExpListContent from "@/components/ExpListContent.vue";
|
||||||
|
import ContactUs from "@/components/ContactUs.vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "ExampleList"
|
name: "ExampleList",
|
||||||
|
components:{
|
||||||
|
ContactUs,
|
||||||
|
ExpListContent
|
||||||
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -15,9 +21,12 @@ export default defineComponent({
|
|||||||
</ol>
|
</ol>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
<ExpListContent></ExpListContent>
|
||||||
|
<ContactUs></ContactUs>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
@import "../publicstyle.scss";
|
@import "../publicstyle.scss";
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
26
src/components/ExpListContent.vue
Normal file
26
src/components/ExpListContent.vue
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import {defineComponent} from 'vue'
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: "ExpListContent"
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="container-lg bg-light pageroot">
|
||||||
|
<div class="normalcontentdiv">
|
||||||
|
<span class="normalcontenttitle">
|
||||||
|
行业案例
|
||||||
|
</span>
|
||||||
|
<span class="normalcontenttext" style="width: 100%;">
|
||||||
|
<table class="table table-striped">
|
||||||
|
</table>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@import "../publicstyle.scss";
|
||||||
|
|
||||||
|
</style>
|
||||||
@ -3,9 +3,11 @@ import {defineComponent} from 'vue'
|
|||||||
|
|
||||||
import brief from "@/components/brief.vue";
|
import brief from "@/components/brief.vue";
|
||||||
import ContactUs from "@/components/ContactUs.vue";
|
import ContactUs from "@/components/ContactUs.vue";
|
||||||
|
import ExpListContent from "@/components/ExpListContent.vue";
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "Homepage",
|
name: "Homepage",
|
||||||
components: {
|
components: {
|
||||||
|
ExpListContent,
|
||||||
brief,
|
brief,
|
||||||
ContactUs
|
ContactUs
|
||||||
},
|
},
|
||||||
@ -14,6 +16,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<brief></brief>
|
<brief></brief>
|
||||||
|
<ExpListContent></ExpListContent>
|
||||||
<ContactUs></ContactUs>
|
<ContactUs></ContactUs>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user