12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <view class="box">
- <!-- <image src="http://resource.bike.hanyiyun.com/weapp/announcement.png" style="width:100%;height:358rpx;"></image> -->
- <image src="/img/xiaobaiTop.png" style="width:512rpx;height:56rpx;margin-top:47rpx;" wx:if="{{title=='小白闪现出行'}}"></image>
- <image src="/img/shanxianTop.png" style="width:512rpx;height:56rpx;margin-top:47rpx;" wx:if="{{title=='闪现出行'}}"></image>
- <image src="http://resource.bike.hanyiyun.com/bike/bike.png" style="width:357rpx;height:255rpx;"></image>
- <view class="content">
- <view class="temporary" style="padding-top:35rpx;">
- <text></text>
- <text>押金</text>
- <text></text>
- </view>
- <view class="rule">
- <view>
- <text style="color:#555555;">押金</text>
- <text style="color:#555555;">{{setting.deposit}}元</text>
- </view>
- </view>
- <view class="temporary">
- <text></text>
- <text>临时用车</text>
- <text></text>
- </view>
- <view class="rule">
- <view wx:if="{{setting.start}}">
- <text style="color:#555555;">起步价</text>
- <text style="color:#555555;">{{setting.starting_price}}元 / {{setting.starting_price_time}}分钟</text>
- </view>
- <view>
- <text style="color:#555555;"><text style="color:#555555;" wx:if="{{setting.start}}">超出</text>时长费(含临时停车)</text>
- <text style="color:#555555;">{{setting.per_money}}元 / {{setting.per_minute}}分钟</text>
- </view>
- </view>
- <view class="temporary" wx:if="{{setting.is_open_day_rent==1}}">
- <text></text>
- <text>日租用车</text>
- <text></text>
- </view>
- <view class="rule" wx:if="{{setting.is_open_day_rent==1}}">
- <view>
- <text style="color:#555555;">起步价</text>
- <text style="color:#555555;">{{setting.day_rent_money}}元 / {{setting.day_rent_hours}}小时</text>
- </view>
- <view>
- <text style="color:#555555;">超出费用</text>
- <text style="color:#555555;">{{setting.per_hours_day_rent_timeout_money}}元 / 1小时</text>
- </view>
- <text>每天{{setting.day_rent_capping_money}}元封顶</text>
- </view>
- <view class="temporary">
- <text></text>
- <text>调度费</text>
- <text></text>
- </view>
- <view class="dispatch">
- <view>
- <text style="color:#555555;">调度费({{setting.min_limit_km}}公里内)</text>
- <text style="color:#555555;">{{setting.min_dispatching_fee}}元</text>
- </view>
- <text>未在还车点进行还车(运营区域外还车、禁停区还车),将收取30元调度费。</text>
- <text>{{setting.min_limit_km}}公里外每超出{{setting.over_limit_per_km}}公里增加{{setting.over_limit_per_km_money}}元调度费;{{setting.max_dispatching_fee}}元封顶</text>
- </view>
- </view>
- </view>
|