相關代碼修改
This commit is contained in:
@@ -6,39 +6,39 @@ window.config = {
|
||||
},
|
||||
{
|
||||
name: "我们的方案",
|
||||
url: "/facilityManagement",
|
||||
url: "/ourPlan",
|
||||
child: [{
|
||||
name: "设施管理",
|
||||
url: "/facilityManagement",
|
||||
url: "/ourPlan/facilityManagement",
|
||||
},
|
||||
{
|
||||
name: "房地产",
|
||||
url: "/reaEstate",
|
||||
url: "/ourPlan/reaEstate",
|
||||
},
|
||||
{
|
||||
name: "物业管理",
|
||||
url: "/estateManagement",
|
||||
url: "/ourPlan/estateManagement",
|
||||
},
|
||||
{
|
||||
name: "系统智能建筑和物联网(iot)",
|
||||
url: "/iot",
|
||||
url: "/ourPlan/iot",
|
||||
},
|
||||
{
|
||||
name: "技术和集成",
|
||||
url: "/technologyIntegration",
|
||||
url: "/ourPlan/technologyIntegration",
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "前沿",
|
||||
url: "/mobileSolution",
|
||||
url: "/fulEdge/mobileSolution",
|
||||
child: [{
|
||||
name: "移动解决方案",
|
||||
url: "/mobileSolution",
|
||||
url: "/fulEdge/mobileSolution",
|
||||
},
|
||||
{
|
||||
name: "其他",
|
||||
url: "/other",
|
||||
url: "/fulEdge/other",
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -47,11 +47,11 @@ window.config = {
|
||||
url: "/aboutUs",
|
||||
child: [{
|
||||
name: "与我们合作",
|
||||
url: "/acooperateWithUs",
|
||||
url: "/aboutUs/acooperateWithUs",
|
||||
},
|
||||
{
|
||||
name: "丙维科技",
|
||||
url: "/PropystTechnology",
|
||||
url: "/aboutUs/PropystTechnology",
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
@@ -63,6 +63,8 @@
|
||||
|
||||
</template>
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -2,7 +2,23 @@ import Vue from 'vue'
|
||||
import Router from "vue-router"
|
||||
|
||||
import index from './views/index'
|
||||
import infoDtl from './views/infoDtl'
|
||||
|
||||
import cooperateWithUs from './views/aboutUs/cooperateWithUs'
|
||||
import propystTechnology from './views/aboutUs/propystTechnology'
|
||||
|
||||
|
||||
import mobileSolution from './views/fulEdge/mobileSolution'
|
||||
import other from './views/fulEdge/other'
|
||||
|
||||
|
||||
import estateManagement from './views/ourPlan/estateManagement'
|
||||
import facilityManagement from './views/ourPlan/facilityManagement'
|
||||
import iot from './views/ourPlan/iot'
|
||||
import reaEstate from './views/ourPlan/reaEstate'
|
||||
import technologyIntegration from './views/ourPlan/technologyIntegration'
|
||||
|
||||
|
||||
|
||||
|
||||
Vue.use(Router);
|
||||
|
||||
@@ -22,8 +38,34 @@ export default new Router({
|
||||
component: index
|
||||
},
|
||||
{
|
||||
path: '/infoDtl',
|
||||
component: infoDtl
|
||||
path: '/aboutUs',
|
||||
component: facilityManagement,
|
||||
children: [
|
||||
{ path: 'cooperateWithUs', component: cooperateWithUs },
|
||||
{ path: 'propystTechnology', component: propystTechnology },
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/fulEdge',
|
||||
component: mobileSolution,
|
||||
children: [
|
||||
{ path: 'mobileSolution', component: mobileSolution },
|
||||
{ path: 'other', component: other },
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/ourPlan',
|
||||
component: estateManagement,
|
||||
children: [
|
||||
{ path: 'estateManagement', component: estateManagement },
|
||||
{ path: 'facilityManagement', component: facilityManagement },
|
||||
{ path: 'iot', component: iot },
|
||||
{ path: 'reaEstate', component: reaEstate },
|
||||
{ path: 'technologyIntegration', component: technologyIntegration }
|
||||
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div>
|
||||
<i_head></i_head>
|
||||
<div class="contentPage">
|
||||
|
||||
<div class="contentTable">
|
||||
<leftMenu> </leftMenu>
|
||||
<i_content></i_content>
|
||||
</div>
|
||||
</div>
|
||||
<i_footer></i_footer>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: "Welcome to Your Vue.js App"
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div>
|
||||
<i_head></i_head>
|
||||
<div class="contentPage">
|
||||
|
||||
<div class="contentTable">
|
||||
<leftMenu> </leftMenu>
|
||||
<i_content></i_content>
|
||||
</div>
|
||||
</div>
|
||||
<i_footer></i_footer>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: "Welcome to Your Vue.js App"
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div>
|
||||
<i_head></i_head>
|
||||
<div class="contentPage">
|
||||
|
||||
<div class="contentTable">
|
||||
<leftMenu> </leftMenu>
|
||||
<i_content></i_content>
|
||||
</div>
|
||||
</div>
|
||||
<i_footer></i_footer>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: "Welcome to Your Vue.js App"
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div>
|
||||
<i_head></i_head>
|
||||
<div class="contentPage">
|
||||
|
||||
<div class="contentTable">
|
||||
<leftMenu> </leftMenu>
|
||||
<i_content></i_content>
|
||||
</div>
|
||||
</div>
|
||||
<i_footer></i_footer>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: "Welcome to Your Vue.js App"
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import "../assets/css/content_pages.css";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user