Commit b80501eb4ac452ee3bdfd73188dff02b667c1248

Authored by liuqimichale
1 parent 6e1cd87d

政府section

webintroduce/src/components/Vsetion.vue renamed to webintroduce/src/components/Vsection.vue
webintroduce/src/views/enterprise.vue
... ... @@ -15,42 +15,42 @@
15 15  
16 16  
17 17 <div class="detail-con">
18   - <Vsetion
  18 + <Vsection
19 19 mytitle="路内停车管理"
20 20 v-bind:insideList="insideList"
21 21 rowReverse=""
22 22 setionheight="291px"
23 23 v-bind:bgImg="InsideImg"
24   - ></Vsetion>
  24 + ></Vsection>
25 25  
26   - <Vsetion
  26 + <Vsection
27 27 mytitle="封闭式停车无人值守管理"
28 28 v-bind:insideList="closeList"
29 29 rowReverse="row-reverse"
30 30 setionheight="263px"
31 31 v-bind:bgImg="CloseImg"
32   - ></Vsetion>
  32 + ></Vsection>
33 33  
34   - <Vsetion
  34 + <Vsection
35 35 mytitle="城市停车诱导系统"
36 36 v-bind:insideList="guideList"
37 37 rowReverse=""
38 38 setionheight="263px"
39 39 v-bind:bgImg="guideImg"
40   - ></Vsetion>
  40 + ></Vsection>
41 41 </div>
42 42  
43 43 </div>
44 44 </template>
45 45  
46 46 <script>
47   -import Vsetion from '../components/Vsetion'
  47 +import Vsection from '../components/Vsection'
48 48 import Vbanner from '../components/Vbanner'
49 49 import Vintroduce from '../components/Vintroduce'
50 50 export default {
51 51 name: 'VEnterprise',
52 52 components: {
53   - Vsetion, Vbanner, Vintroduce
  53 + Vsection, Vbanner, Vintroduce
54 54 },
55 55 data() {
56 56 return {
... ...
webintroduce/src/views/government.vue
... ... @@ -10,21 +10,71 @@
10 10 introduceTitle="城市级智慧停车解决方案"
11 11 introduceDes="城市级智慧停车数据管理中心,面向政府城市停车管理部门,针对城市停车治理难题构建一套完整的技术解决方案,通过动静态交通数据融合,数据分析,应用物联网、云计算等技术,深度刻画城市级停车面貌,挖掘城市停车治理问题,提供数据以及决策支撑,有效提升城市停车治理效率,减少城市核心区道路拥堵,提高城市交通治理水平。"
12 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 41 </div>
14 42 </template>
15 43  
16 44 <script>
17 45 import Vbanner from '../components/Vbanner'
18 46 import Vintroduce from '../components/Vintroduce'
  47 +import Vsection from '../components/Vsection'
19 48 export default {
20 49 name: 'government',
21 50 components:{
22   - Vbanner, Vintroduce
  51 + Vbanner, Vintroduce, Vsection
23 52 },
24 53 data(){
25 54 return{
26 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 }
... ...