You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
981 B

5 years ago
<!--pages/pbService/PRpark/index.wxml-->
<title title="P+R停车场"></title>
<view class="park-item" wx:for="{{list}}" bindtap="gotoLocation" data-item="{{item}}">
<view class="park-top">
<view class="park-left">
<view class="parkname">{{item.name}}</view>
<view class="park-tips">距离定位<text>{{item.distance}}公里</text>共{{item.nums}}车位</view>
</view>
<image lazy-load src="https://static.ticket.sz-trip.com/uploads/20210407/fa5139b0dc0266197248110a9c65ba56.png" mode="widthFix"></image>
5 years ago
</view>
<view class="park-box" wx:if="{{item.is_free==1}}">
<view class="park-bg">免费</view>
</view>
<view class="park-box" wx:if="{{item.is_benifit==1}}">
<view class="park-bg">优惠</view>
<view class="park-text">{{item.benifit_policy}}</view>
</view>
<view class="park-box" wx:if="{{item.is_free==0}}">
<view class="park-bg">收费</view>
<view class="park-text">{{item.charge_standard}}</view>
</view>
</view>