官網更新
This commit is contained in:
5
package-lock.json
generated
5
package-lock.json
generated
@@ -2278,6 +2278,11 @@
|
|||||||
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
|
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"bootstrap": {
|
||||||
|
"version": "3.3.7",
|
||||||
|
"resolved": "http://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz",
|
||||||
|
"integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E="
|
||||||
|
},
|
||||||
"brace-expansion": {
|
"brace-expansion": {
|
||||||
"version": "1.1.11",
|
"version": "1.1.11",
|
||||||
"resolved": "http://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz",
|
"resolved": "http://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz",
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
"lint": "vue-cli-service lint"
|
"lint": "vue-cli-service lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"bootstrap": "^3.3.7",
|
||||||
"es6-promise": "^4.2.5",
|
"es6-promise": "^4.2.5",
|
||||||
"vue": "^2.5.17",
|
"vue": "^2.5.17",
|
||||||
"vue-awesome-swiper": "^3.1.3",
|
"vue-awesome-swiper": "^3.1.3",
|
||||||
|
|||||||
@@ -6,7 +6,8 @@
|
|||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
margin: 0 auto 0 auto;
|
margin: 0 auto 0 auto;
|
||||||
padding-top: 7em;
|
padding-top: 7em;
|
||||||
min-height: 100vh;
|
height: 100vh;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* CONTENT TABLES */
|
/* CONTENT TABLES */
|
||||||
@@ -19,10 +20,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.contentTableRight {
|
.contentTableRight {
|
||||||
width: 50%;
|
width: 75%;
|
||||||
padding-top: 3.5em;
|
padding-top: 3.5em;
|
||||||
padding-left: 4.0em;
|
padding-left: 4.0em;
|
||||||
padding-right: 12em;
|
padding-right: 4.0em;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="contentTableRight bread">
|
||||||
<slot></slot>
|
<slot ></slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
@@ -16,4 +16,8 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.contentTableRight
|
||||||
|
{
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -56,4 +56,8 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.contentTableLeft {
|
||||||
|
display: table;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
import './assets/css/cookieconsent.min.css'
|
import './assets/css/cookieconsent.min.css'
|
||||||
import './assets/css/common.css'
|
import './assets/css/common.css'
|
||||||
import 'swiper/dist/css/swiper.css'
|
import 'swiper/dist/css/swiper.css'
|
||||||
|
|||||||
@@ -3,14 +3,16 @@ import Router from "vue-router"
|
|||||||
|
|
||||||
import index from './views/index'
|
import index from './views/index'
|
||||||
|
|
||||||
|
import aboutUs from './views/aboutUs/aboutUs'
|
||||||
import cooperateWithUs from './views/aboutUs/cooperateWithUs'
|
import cooperateWithUs from './views/aboutUs/cooperateWithUs'
|
||||||
import propystTechnology from './views/aboutUs/propystTechnology'
|
import propystTechnology from './views/aboutUs/propystTechnology'
|
||||||
|
|
||||||
|
|
||||||
|
import fulEdge from './views/fulEdge/fulEdge'
|
||||||
import mobileSolution from './views/fulEdge/mobileSolution'
|
import mobileSolution from './views/fulEdge/mobileSolution'
|
||||||
import other from './views/fulEdge/other'
|
import other from './views/fulEdge/other'
|
||||||
|
|
||||||
|
import ourPlan from './views/ourPlan/ourPlan'
|
||||||
import estateManagement from './views/ourPlan/estateManagement'
|
import estateManagement from './views/ourPlan/estateManagement'
|
||||||
import facilityManagement from './views/ourPlan/facilityManagement'
|
import facilityManagement from './views/ourPlan/facilityManagement'
|
||||||
import iot from './views/ourPlan/iot'
|
import iot from './views/ourPlan/iot'
|
||||||
@@ -23,6 +25,7 @@ import technologyIntegration from './views/ourPlan/technologyIntegration'
|
|||||||
Vue.use(Router);
|
Vue.use(Router);
|
||||||
|
|
||||||
export default new Router({
|
export default new Router({
|
||||||
|
mode: 'history',
|
||||||
base: process.env.BASE_URL,
|
base: process.env.BASE_URL,
|
||||||
routes: [
|
routes: [
|
||||||
{
|
{
|
||||||
@@ -39,8 +42,9 @@ export default new Router({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/aboutUs',
|
path: '/aboutUs',
|
||||||
component: cooperateWithUs,
|
component: aboutUs,
|
||||||
children: [
|
children: [
|
||||||
|
{ path:'/',component:cooperateWithUs, },
|
||||||
{ path: 'cooperateWithUs', component: cooperateWithUs },
|
{ path: 'cooperateWithUs', component: cooperateWithUs },
|
||||||
{ path: 'propystTechnology', component: propystTechnology },
|
{ path: 'propystTechnology', component: propystTechnology },
|
||||||
|
|
||||||
@@ -48,8 +52,9 @@ export default new Router({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/fulEdge',
|
path: '/fulEdge',
|
||||||
component: mobileSolution,
|
component: fulEdge,
|
||||||
children: [
|
children: [
|
||||||
|
{ path:'/',component:mobileSolution, },
|
||||||
{ path: 'mobileSolution', component: mobileSolution },
|
{ path: 'mobileSolution', component: mobileSolution },
|
||||||
{ path: 'other', component: other },
|
{ path: 'other', component: other },
|
||||||
|
|
||||||
@@ -57,8 +62,9 @@ export default new Router({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/ourPlan',
|
path: '/ourPlan',
|
||||||
component: estateManagement,
|
component: ourPlan,
|
||||||
children: [
|
children: [
|
||||||
|
{ path:'/',component:estateManagement, },
|
||||||
{ path: 'estateManagement', component: estateManagement },
|
{ path: 'estateManagement', component: estateManagement },
|
||||||
{ path: 'facilityManagement', component: facilityManagement },
|
{ path: 'facilityManagement', component: facilityManagement },
|
||||||
{ path: 'iot', component: iot },
|
{ path: 'iot', component: iot },
|
||||||
|
|||||||
@@ -5,7 +5,9 @@
|
|||||||
|
|
||||||
<div class="contentTable">
|
<div class="contentTable">
|
||||||
<leftMenu> </leftMenu>
|
<leftMenu> </leftMenu>
|
||||||
<icontent></icontent>
|
<icontent>
|
||||||
|
<router-view></router-view>
|
||||||
|
</icontent>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ifooter></ifooter>
|
<ifooter></ifooter>
|
||||||
@@ -1,18 +1,35 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div >
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
<div class="row left">
|
||||||
<leftMenu> </leftMenu>
|
<div class="col-md-12">
|
||||||
<icontent>
|
<div class="col-md-5 col-sm-5 scrollpoint sp-effect1" style="padding:0px;">
|
||||||
|
<div class="form-group cav_contact_hello" style="text-align:left;">
|
||||||
|
<p class="nav_div"><label style="font-family:'Microsoft YaHei';font-weight:100;">您好</label><label style="font-family:'Microsoft YaHei';font-weight:100;"> HELLO!</label></p>
|
||||||
|
</div>
|
||||||
|
<div class="form-group cav_contact_div1" style="text-align:left">
|
||||||
|
感谢您来到上海丙維科技有限公司,若您有合作意向,请您用以下方式联系我们,我们为您提供真诚的服务,谢谢。
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6 col-sm-6 ">
|
||||||
|
<ul class="cav_contact_ul">
|
||||||
|
<li style="padding-top:12px;">021-61166770</li>
|
||||||
|
<li style="padding-top:19px;">bimwe@bimwe.com</li>
|
||||||
|
<li style="padding-top:21px;">
|
||||||
|
上海市宝山区逸仙路
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row right">
|
||||||
|
<img width="100%" src="http://api.map.baidu.com/staticimage/v2?ak=y2qrobvV7OiT0P5FuoOXzvr1NzRbKPEE&mcode=666666¢er=121.425276,31.438629&zoom=13 " />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
@@ -21,15 +38,48 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
msg: "Welcome to Your Vue.js App"
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted: function() {
|
mounted: function() {
|
||||||
|
|
||||||
console.log("mounted");
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.nav_div {
|
||||||
|
font-size: 25px;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cav_contact_div1 {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 28px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
position: left;
|
||||||
|
display: inline-block;
|
||||||
|
margin: 1em;
|
||||||
|
width: 35%;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cav_contact_ul > li {
|
||||||
|
list-style: none;
|
||||||
|
padding-top: 14px;
|
||||||
|
font-family: "Microsoft YaHei";
|
||||||
|
font-size: 14px;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,28 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {};
|
||||||
msg: "Welcome to Your Vue.js App"
|
},
|
||||||
};
|
mounted: function() {
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
30
src/views/fulEdge/fulEdge.vue
Normal file
30
src/views/fulEdge/fulEdge.vue
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<ihead></ihead>
|
||||||
|
<div class="contentPage">
|
||||||
|
|
||||||
|
<div class="contentTable">
|
||||||
|
<leftMenu> </leftMenu>
|
||||||
|
<icontent>
|
||||||
|
<router-view></router-view>
|
||||||
|
</icontent>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ifooter></ifooter>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
@@ -18,7 +10,7 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
msg: "Welcome to Your Vue.js App"
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
@@ -18,7 +10,7 @@
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
msg: "Welcome to Your Vue.js App"
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,25 +1,19 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
msg: "Welcome to Your Vue.js App"
|
msg: "Welcome to Your Vue.js App"
|
||||||
};
|
};
|
||||||
|
},
|
||||||
|
mounted: function() {
|
||||||
|
debugger;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
30
src/views/ourPlan/ourPlan.vue
Normal file
30
src/views/ourPlan/ourPlan.vue
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<ihead></ihead>
|
||||||
|
<div class="contentPage">
|
||||||
|
|
||||||
|
<div class="contentTable">
|
||||||
|
<leftMenu> </leftMenu>
|
||||||
|
<icontent>
|
||||||
|
<router-view></router-view>
|
||||||
|
</icontent>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ifooter></ifooter>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
msg: "Welcome to Your Vue.js App"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<ihead></ihead>
|
|
||||||
<div class="contentPage">
|
|
||||||
|
|
||||||
<div class="contentTable">
|
|
||||||
<leftMenu> </leftMenu>
|
|
||||||
<icontent></icontent>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ifooter></ifooter>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user