Commit b80501eb4ac452ee3bdfd73188dff02b667c1248
1 parent
6e1cd87d
政府section
Showing
3 changed files
with
60 additions
and
10 deletions
webintroduce/src/components/Vsetion.vue renamed to webintroduce/src/components/Vsection.vue
webintroduce/src/views/enterprise.vue
@@ -15,42 +15,42 @@ | @@ -15,42 +15,42 @@ | ||
15 | 15 | ||
16 | 16 | ||
17 | <div class="detail-con"> | 17 | <div class="detail-con"> |
18 | - <Vsetion | 18 | + <Vsection |
19 | mytitle="路内停车管理" | 19 | mytitle="路内停车管理" |
20 | v-bind:insideList="insideList" | 20 | v-bind:insideList="insideList" |
21 | rowReverse="" | 21 | rowReverse="" |
22 | setionheight="291px" | 22 | setionheight="291px" |
23 | v-bind:bgImg="InsideImg" | 23 | v-bind:bgImg="InsideImg" |
24 | - ></Vsetion> | 24 | + ></Vsection> |
25 | 25 | ||
26 | - <Vsetion | 26 | + <Vsection |
27 | mytitle="封闭式停车无人值守管理" | 27 | mytitle="封闭式停车无人值守管理" |
28 | v-bind:insideList="closeList" | 28 | v-bind:insideList="closeList" |
29 | rowReverse="row-reverse" | 29 | rowReverse="row-reverse" |
30 | setionheight="263px" | 30 | setionheight="263px" |
31 | v-bind:bgImg="CloseImg" | 31 | v-bind:bgImg="CloseImg" |
32 | - ></Vsetion> | 32 | + ></Vsection> |
33 | 33 | ||
34 | - <Vsetion | 34 | + <Vsection |
35 | mytitle="城市停车诱导系统" | 35 | mytitle="城市停车诱导系统" |
36 | v-bind:insideList="guideList" | 36 | v-bind:insideList="guideList" |
37 | rowReverse="" | 37 | rowReverse="" |
38 | setionheight="263px" | 38 | setionheight="263px" |
39 | v-bind:bgImg="guideImg" | 39 | v-bind:bgImg="guideImg" |
40 | - ></Vsetion> | 40 | + ></Vsection> |
41 | </div> | 41 | </div> |
42 | 42 | ||
43 | </div> | 43 | </div> |
44 | </template> | 44 | </template> |
45 | 45 | ||
46 | <script> | 46 | <script> |
47 | -import Vsetion from '../components/Vsetion' | 47 | +import Vsection from '../components/Vsection' |
48 | import Vbanner from '../components/Vbanner' | 48 | import Vbanner from '../components/Vbanner' |
49 | import Vintroduce from '../components/Vintroduce' | 49 | import Vintroduce from '../components/Vintroduce' |
50 | export default { | 50 | export default { |
51 | name: 'VEnterprise', | 51 | name: 'VEnterprise', |
52 | components: { | 52 | components: { |
53 | - Vsetion, Vbanner, Vintroduce | 53 | + Vsection, Vbanner, Vintroduce |
54 | }, | 54 | }, |
55 | data() { | 55 | data() { |
56 | return { | 56 | return { |
webintroduce/src/views/government.vue
@@ -10,21 +10,71 @@ | @@ -10,21 +10,71 @@ | ||
10 | introduceTitle="城市级智慧停车解决方案" | 10 | introduceTitle="城市级智慧停车解决方案" |
11 | introduceDes="城市级智慧停车数据管理中心,面向政府城市停车管理部门,针对城市停车治理难题构建一套完整的技术解决方案,通过动静态交通数据融合,数据分析,应用物联网、云计算等技术,深度刻画城市级停车面貌,挖掘城市停车治理问题,提供数据以及决策支撑,有效提升城市停车治理效率,减少城市核心区道路拥堵,提高城市交通治理水平。" | 11 | introduceDes="城市级智慧停车数据管理中心,面向政府城市停车管理部门,针对城市停车治理难题构建一套完整的技术解决方案,通过动静态交通数据融合,数据分析,应用物联网、云计算等技术,深度刻画城市级停车面貌,挖掘城市停车治理问题,提供数据以及决策支撑,有效提升城市停车治理效率,减少城市核心区道路拥堵,提高城市交通治理水平。" |
12 | ></Vintroduce> | 12 | ></Vintroduce> |
13 | + | ||
14 | + <div class="detail-con"> | ||
15 | + <Vsection | ||
16 | + mytitle="路内停车管理" | ||
17 | + v-bind:insideList="insideList" | ||
18 | + rowReverse="" | ||
19 | + setionheight="291px" | ||
20 | + v-bind:bgImg="InsideImg" | ||
21 | + ></Vsection> | ||
22 | + | ||
23 | + <Vsection | ||
24 | + mytitle="封闭式停车无人值守管理" | ||
25 | + v-bind:insideList="closeList" | ||
26 | + rowReverse="row-reverse" | ||
27 | + setionheight="263px" | ||
28 | + v-bind:bgImg="CloseImg" | ||
29 | + ></Vsection> | ||
30 | + | ||
31 | + <Vsection | ||
32 | + mytitle="城市停车诱导系统" | ||
33 | + v-bind:insideList="guideList" | ||
34 | + rowReverse="" | ||
35 | + setionheight="263px" | ||
36 | + v-bind:bgImg="guideImg" | ||
37 | + ></Vsection> | ||
38 | + </div> | ||
39 | + | ||
40 | + </div> | ||
13 | </div> | 41 | </div> |
14 | </template> | 42 | </template> |
15 | 43 | ||
16 | <script> | 44 | <script> |
17 | import Vbanner from '../components/Vbanner' | 45 | import Vbanner from '../components/Vbanner' |
18 | import Vintroduce from '../components/Vintroduce' | 46 | import Vintroduce from '../components/Vintroduce' |
47 | +import Vsection from '../components/Vsection' | ||
19 | export default { | 48 | export default { |
20 | name: 'government', | 49 | name: 'government', |
21 | components:{ | 50 | components:{ |
22 | - Vbanner, Vintroduce | 51 | + Vbanner, Vintroduce, Vsection |
23 | }, | 52 | }, |
24 | data(){ | 53 | data(){ |
25 | return{ | 54 | return{ |
26 | bannerImg:require('../assets/images/government/banner.png'), | 55 | bannerImg:require('../assets/images/government/banner.png'), |
27 | - introduceBg:require('../assets/images/government/introduce.png') | 56 | + introduceBg:require('../assets/images/government/introduce.png'), |
57 | + insideList: [ | ||
58 | + '实时采集车位状态停车时长,后台实时监管后台实时监管', | ||
59 | + '精确记录停车时长,后台实时监管后台实时监管', | ||
60 | + '有效杜绝跑冒滴漏', | ||
61 | + '停车入位、规范有序、智能有偿', | ||
62 | + ], | ||
63 | + InsideImg: require('../assets/images/enterprise/inside.png'), | ||
64 | + closeList: [ | ||
65 | + '无人值守,降低人工运营成本,提高车场收益', | ||
66 | + '无人值守,降低人工运营成', | ||
67 | + '无人值守,降低人工运营成本,提', | ||
68 | + ], | ||
69 | + CloseImg: require('../assets/images/enterprise/close.png'), | ||
70 | + guideList: [ | ||
71 | + '城市停车三级诱导城市停车三级诱导城市停车三级诱导', | ||
72 | + '实时交通路况展示(红、黄、绿)通路况展示(红、黄、绿)', | ||
73 | + '停车场剩余泊位实时更新', | ||
74 | + '减少停车时长,提高停车效率', | ||
75 | + '缓解局部交通微循环,减少拥堵' | ||
76 | + ], | ||
77 | + guideImg: require('../assets/images/enterprise/guide.png') | ||
28 | } | 78 | } |
29 | } | 79 | } |
30 | } | 80 | } |