1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view class="parking-information">
- <view class="parking-information-slider">
- <image src="../../static/img/parking-info-bg.png" mode=""></image>
- </view>
- <view class="parking-information-content">
- <view class="parking-information-content-title">
- <view class="pict-left">
- <view class="title">{{roadInfo.areaName}}</view>
- <view class="subtitle">{{roadInfo.roadName}}</view>
- </view>
- <view class="pict-right" @click="navigation(roadInfo.latitude, roadInfo.longitude)">
- <image src="../../static/img/distance-icon.png" mode=""></image>
- <view class="m">{{roadInfo.distance|kmUnit}}</view>
- </view>
- </view>
- <view class="parking-information-content-time">
- <view>服务时间:<text>{{roadInfo.workBeginTime}}-{{roadInfo.workEndTime}}</text></view>
- <view>包月费用:<text>{{roadInfo.monthAmount}}</text>元</view>
- </view>
- <view class="parking-information-content-cars">
- <view class="picc-tag">
- <view>{{roadInfo.spaceTotal}}</view>
- <view>共有车位</view>
- </view>
- <view class="picc-tag">
- <view>{{roadInfo.spaceIdle}}</view>
- <view>空闲车位</view>
- </view>
- </view>
- <view class="parking-information-content-price" @click="lookParkingRule(roadInfo)">
- <text>点击查看停车规则</text>
- <u-icon name="arrow-right"></u-icon>
- </view>
- <u-button class="parking-information-content-button" @click="createMonth(roadInfo)">办理包月</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- roadInfo:[],
- }
- },
- onLoad(page) {
- this.roadInfo = JSON.parse(page.roadInfo);
- console.log('this.roadInfo',this.roadInfo);
- },
- methods: {
- /**
- * 跳转停车标准页面
- * {roadNo} 路段编码
- * */
- lookParkingRule (item) {
- this.$u.route({
- url: 'pages/chargeStandard/chargeStandard',
- params: {
- roadNo: item.roadNo
- }
- })
- },
- createMonth(item){
- this.$u.route({
- url: 'pages/handleMonthly/handleMonthly',
- params: {
- roadNo:item.roadNo
- }
- });
- },
- /**
- * 导航
- * */
- navigation (lat, lon) {
- // uni.openLocation({
- // latitude: parseFloat(lat),
- // longitude: parseFloat(lon),
- // scale: 18
- // })
- uni.navigateTo({
- url: '/pages/parkingLists/map_web_view/map_web_view?url=https://3gimg.qq.com/lightmap/v1/marker/?marker=coord:'+lat+','+lon+'&referer=myApp&key=BOGBZ-2BZ33-O4L32-Y3QJR-PGN66-RFFEL'
- })
- },
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './parkingInformation';
- </style>
|