|
@@ -151,9 +151,9 @@
|
|
|
元/度 起
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="park">
|
|
|
+ <view class="park" v-if="item.parkingDescription">
|
|
|
<text class="park-p" style="color: #FFFFFF;">p</text>
|
|
|
- <text class="park-text">2小时免费停车</text>
|
|
|
+ <text class="park-text">{{item.parkingDescription}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="img-box">
|
|
@@ -221,11 +221,11 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="card_item" style="border-bottom: #F1F4F3; border-bottom-width: 2rpx;border-style: solid;border-top-width: 0rpx;border-left-width: 0rpx;border-right-width:0rpx; padding-bottom:20rpx">
|
|
|
- <view style="display: flex;flex-direction: row;">
|
|
|
+ <view style="display: flex;flex-direction: row;" v-if="item.parkingDescription">
|
|
|
<view style="background-color: #7DB1FF;padding-left: 10rpx;padding-right: 10rpx;color: #FFFFFF;">
|
|
|
P
|
|
|
</view>
|
|
|
- <label>{{item.park}}</label>
|
|
|
+ <label>{{item.parkingDescription}}</label>
|
|
|
</view>
|
|
|
<view style="display: flex;flex-direction: row;">
|
|
|
<view style="color: #00B962;" class="font-weight2">
|
|
@@ -885,6 +885,9 @@ export default {
|
|
|
if(items[i].image != null){
|
|
|
obj.image = items[i].image;
|
|
|
}
|
|
|
+ if(items[i].parkingDescription != null){
|
|
|
+ obj.parkingDescription = items[i].parkingDescription;
|
|
|
+ }
|
|
|
if(items[i].park != null)
|
|
|
obj.park = items[i].park;
|
|
|
/*
|
|
@@ -968,6 +971,9 @@ export default {
|
|
|
if(items[i].time != null){
|
|
|
obj.time = items[i].time;
|
|
|
}
|
|
|
+ if(items[i].parkingDescription != null){
|
|
|
+ obj.parkingDescription = items[i].parkingDescription;
|
|
|
+ }
|
|
|
if(items[i].image != null){
|
|
|
obj.image = items[i].image;
|
|
|
}
|