Commit 4f8a4a113043399a318ebfde2d867b2bba991045
1 parent
dac7137c
解决方案
Showing
11 changed files
with
157 additions
and
3 deletions
webintroduce/src/assets/images/solution/government.png
0 → 100644
226 KB
webintroduce/src/assets/images/solution/operate.png
0 → 100644
27 KB
webintroduce/src/assets/images/solution/park.png
0 → 100644
80.5 KB
webintroduce/src/assets/images/solution/personal.png
0 → 100644
165 KB
webintroduce/src/assets/images/solution/worth-list01.png
0 → 100644
10.6 KB
webintroduce/src/assets/images/solution/worth-list02.png
0 → 100644
11.6 KB
webintroduce/src/assets/images/solution/worth-list03.png
0 → 100644
14.1 KB
webintroduce/src/assets/images/solution/worth1.png
0 → 100644
3.31 KB
webintroduce/src/assets/images/solution/worth2.png
0 → 100644
3.76 KB
webintroduce/src/assets/images/solution/worth3.png
0 → 100644
5.47 KB
webintroduce/src/views/solution.vue
| ... | ... | @@ -29,25 +29,106 @@ |
| 29 | 29 | <div> |
| 30 | 30 | <p class="plan-title">城市停车规划</p> |
| 31 | 31 | |
| 32 | - <p class="build-title">城市停车规划</p> | |
| 32 | + <p class="build-title">城市停车建设</p> | |
| 33 | + <Vsection | |
| 34 | + mytitle="面向政府停车管理部门" | |
| 35 | + v-bind:insideList="insideList" | |
| 36 | + rowReverse="" | |
| 37 | + setionheight="412px" | |
| 38 | + v-bind:bgImg="InsideImg" | |
| 39 | + ></Vsection> | |
| 40 | + | |
| 41 | + <Vsection | |
| 42 | + mytitle="面向停车场运营企业" | |
| 43 | + v-bind:insideList="closeList" | |
| 44 | + rowReverse="row-reverse" | |
| 45 | + setionheight="412px" | |
| 46 | + v-bind:bgImg="CloseImg" | |
| 47 | + ></Vsection> | |
| 48 | + | |
| 49 | + | |
| 50 | + <Vsection | |
| 51 | + mytitle="面向车主个人 任你停APP" | |
| 52 | + v-bind:insideList="personalList" | |
| 53 | + rowReverse="" | |
| 54 | + setionheight="412px" | |
| 55 | + v-bind:bgImg="personalImg" | |
| 56 | + ></Vsection> | |
| 33 | 57 | </div> |
| 34 | 58 | |
| 59 | + <p class="operate-title">城市停车运营</p> | |
| 60 | + <p class="worth-title">行业价值</p> | |
| 61 | + <ul class="worth-list"> | |
| 62 | + <li> | |
| 63 | + <div></div> | |
| 64 | + <p>政府</p> | |
| 65 | + <ul> | |
| 66 | + <li>实时掌握全市停车资源数据</li> | |
| 67 | + <li>多源数据融合分析,支撑城市停车管理决策</li> | |
| 68 | + <li>盘活存量市场,解决城市停车难题</li> | |
| 69 | + <li>减少拥堵,提升城市交通整体形象</li> | |
| 70 | + </ul> | |
| 71 | + </li> | |
| 35 | 72 | |
| 73 | + <li> | |
| 74 | + <div></div> | |
| 75 | + <p>企业</p> | |
| 76 | + <ul> | |
| 77 | + <li>有效杜绝跑冒滴漏,提高车场收益</li> | |
| 78 | + <li>丰富的统计报表,实时获得各种经营数据</li> | |
| 79 | + <li>统一管理,规范运营,有效提高企业形象</li> | |
| 80 | + <li>高效停车诱导,提高车位周转率</li> | |
| 81 | + </ul> | |
| 82 | + </li> | |
| 36 | 83 | |
| 84 | + <li> | |
| 85 | + <div></div> | |
| 86 | + <p>个人</p> | |
| 87 | + <ul> | |
| 88 | + <li>轻松停车,快速找到停车位</li> | |
| 89 | + <li>车位共享,有效利用闲置资源,提高车主收益</li> | |
| 90 | + <li>多种在线电子支付,方便快捷</li> | |
| 91 | + <li>周边服务,畅享优惠打折,减少停车费用</li> | |
| 92 | + </ul> | |
| 93 | + </li> | |
| 94 | + </ul> | |
| 37 | 95 | </div> |
| 38 | 96 | </template> |
| 39 | 97 | |
| 40 | 98 | <script> |
| 41 | 99 | import Vbanner from '../components/Vbanner' |
| 42 | - | |
| 100 | +import Vsection from '../components/Vsection' | |
| 43 | 101 | export default { |
| 44 | 102 | name: 'VSolution', |
| 45 | 103 | components: { |
| 46 | - Vbanner | |
| 104 | + Vbanner, Vsection | |
| 47 | 105 | }, |
| 48 | 106 | data() { |
| 49 | 107 | return { |
| 50 | 108 | bannerImg: require('../assets/images/solution/banner.png'), |
| 109 | + insideList: [ | |
| 110 | + '数据模型刻画', | |
| 111 | + '停车综合监测数据模停车分析研判', | |
| 112 | + '停车综合监测', | |
| 113 | + '动态交通组织优化', | |
| 114 | + ], | |
| 115 | + InsideImg: require('../assets/images/solution/government.png'), | |
| 116 | + | |
| 117 | + closeList: [ | |
| 118 | + '路内停车建设与管理', | |
| 119 | + '封闭式停车无人值守建设与管理无人值守建设与管理', | |
| 120 | + '城市停车诱导系统 ' | |
| 121 | + ], | |
| 122 | + CloseImg: require('../assets/images/solution/park.png'), | |
| 123 | + | |
| 124 | + personalList: [ | |
| 125 | + '停车一键导航在线缴费快速出场', | |
| 126 | + '在线缴费快速出场在线缴费快速出场在线缴费快速出场', | |
| 127 | + '个人车位共享在线缴费', | |
| 128 | + '周边服务在线缴费快速出场', | |
| 129 | + '会员办理,积分兑' | |
| 130 | + ], | |
| 131 | + personalImg: require('../assets/images/solution/personal.png'), | |
| 51 | 132 | } |
| 52 | 133 | } |
| 53 | 134 | } |
| ... | ... | @@ -109,4 +190,77 @@ export default { |
| 109 | 190 | padding-bottom: 30px; |
| 110 | 191 | font-size: 32px; |
| 111 | 192 | } |
| 193 | + .operate-title{ | |
| 194 | + padding: 74px 0 700px; | |
| 195 | + font-size:32px; | |
| 196 | + background: url("../assets/images/solution/operate.png") no-repeat center 150px; | |
| 197 | + } | |
| 198 | + .worth-title{ | |
| 199 | + font-size:32px; | |
| 200 | + padding-bottom: 30px; | |
| 201 | + } | |
| 202 | + .worth-list{ | |
| 203 | + width: 1200px; | |
| 204 | + margin: 0 auto 30px; | |
| 205 | + overflow: hidden; | |
| 206 | + background: #fff; | |
| 207 | + >li{ | |
| 208 | + width:370px; | |
| 209 | + height:409px; | |
| 210 | + float: left; | |
| 211 | + background:rgba(255,255,255,1); | |
| 212 | + box-shadow:0px 7px 54px 0px rgba(157,165,167,0.7); | |
| 213 | + border-radius:8px; | |
| 214 | + | |
| 215 | + &:nth-of-type(1){ | |
| 216 | + background: url("../assets/images/solution/worth-list01.png") no-repeat; | |
| 217 | + background-size: 100% 100%; | |
| 218 | + div{ | |
| 219 | + background: url("../assets/images/solution/worth1.png"); | |
| 220 | + } | |
| 221 | + p{ | |
| 222 | + color:rgba(239,94,62,1); | |
| 223 | + } | |
| 224 | + } | |
| 225 | + &:nth-of-type(2){ | |
| 226 | + margin: 0 40px; | |
| 227 | + background: url("../assets/images/solution/worth-list02.png") no-repeat; | |
| 228 | + background-size: 100% 100%; | |
| 229 | + div{ | |
| 230 | + background: url("../assets/images/solution/worth2.png"); | |
| 231 | + } | |
| 232 | + p{ | |
| 233 | + color:rgba(113,189,199,1); | |
| 234 | + } | |
| 235 | + } | |
| 236 | + &:nth-of-type(3){ | |
| 237 | + background: url("../assets/images/solution/worth-list03.png") no-repeat; | |
| 238 | + background-size: 100% 100%; | |
| 239 | + div{ | |
| 240 | + background: url("../assets/images/solution/worth3.png"); | |
| 241 | + } | |
| 242 | + p{ | |
| 243 | + color:rgba(242,188,98,1); | |
| 244 | + } | |
| 245 | + } | |
| 246 | + >div{ | |
| 247 | + width: 140px; | |
| 248 | + height: 140px; | |
| 249 | + margin: 60px auto 10px; | |
| 250 | + } | |
| 251 | + >p{ | |
| 252 | + font-size:32px; | |
| 253 | + margin-bottom: 10px; | |
| 254 | + } | |
| 255 | + li{ | |
| 256 | + font-size:14px; | |
| 257 | + font-family:PingFang-SC-Medium; | |
| 258 | + font-weight:500; | |
| 259 | + color:rgba(0,0,0,.7); | |
| 260 | + line-height:35px; | |
| 261 | + text-align: left; | |
| 262 | + padding-left: 20px; | |
| 263 | + } | |
| 264 | + } | |
| 265 | + } | |
| 112 | 266 | </style> | ... | ... |