初步上线测试
This commit is contained in:
parent
74c740a3f5
commit
1a7d09b65c
@ -1,8 +1,12 @@
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
import ContactUs from "@/components/ContactUs.vue";
|
||||
|
||||
export default defineComponent({
|
||||
name: "ExampleItem"
|
||||
name: "ExampleItem",
|
||||
components:{
|
||||
ContactUs
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
@ -15,6 +19,7 @@ export default defineComponent({
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
<ContactUs></ContactUs>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
@ -1,8 +1,14 @@
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
import ExpListContent from "@/components/ExpListContent.vue";
|
||||
import ContactUs from "@/components/ContactUs.vue";
|
||||
|
||||
export default defineComponent({
|
||||
name: "ExampleList"
|
||||
name: "ExampleList",
|
||||
components:{
|
||||
ContactUs,
|
||||
ExpListContent
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
@ -15,9 +21,12 @@ export default defineComponent({
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
<ExpListContent></ExpListContent>
|
||||
<ContactUs></ContactUs>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "../publicstyle.scss";
|
||||
|
||||
|
||||
</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 ContactUs from "@/components/ContactUs.vue";
|
||||
import ExpListContent from "@/components/ExpListContent.vue";
|
||||
export default defineComponent({
|
||||
name: "Homepage",
|
||||
components: {
|
||||
ExpListContent,
|
||||
brief,
|
||||
ContactUs
|
||||
},
|
||||
@ -14,6 +16,7 @@ export default defineComponent({
|
||||
|
||||
<template>
|
||||
<brief></brief>
|
||||
<ExpListContent></ExpListContent>
|
||||
<ContactUs></ContactUs>
|
||||
</template>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user