1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <view class="box">
- <view class="top" wx:if="{{arr!=''}}">
- <text>电单车骑行卡</text>
- <text>购卡骑行更划算</text>
- </view>
- <view class="hot" style="background-image:url('{{img}}weapp/hot_active.png')" bindtap="hot" wx:if="{{hot}}">
- <!-- <text class="frequency" wx:if="{{hotInfo.is_limit_times==1}}">{{hotInfo.times}}次/{{hotInfo.effective_days}}天</text> -->
- <text class="frequency">{{hotInfo.name}}</text>
- <!-- <text class="frequency" wx:if="{{hotInfo.is_limit_times==0}}">{{hotInfo.effective_days}}天不限次</text> -->
- <view class="info">
- <text>{{hotInfo.now_price}}</text>
- <text wx:if="{{hotInfo.is_discount==1}}">原价{{hotInfo.price}}</text>
-
- </view>
- <view class="buy" bindtap="buy1">
- <text>购买</text>
- </view>
- <view class="tip">
- <text>单次最高抵扣{{hotInfo.deduction_money}}元</text>
- </view>
- </view>
- <view class="list">
- <view class="view" wx:for="{{arr}}" wx:key="key">
- <!-- <text class="text" wx:if="{{item.is_limit_times==1}}">{{item.times}}次/{{item.effective_days}}天</text> -->
- <text class="text">{{item.name}}</text>
- <!-- <text class="text" wx:if="{{item.is_limit_times==0}}">{{item.effective_days}}天不限次</text> -->
- <view class="money">
- <text>{{item.now_price}}</text>
- <text wx:if="{{item.is_discount==1}}">原价{{item.price}}</text>
- </view>
- <view class="position" wx:if="{{item.is_discount==1}}">
- <text>限时{{item.discount}}折</text>
- </view>
- <view class="buy" bindtap="buy" data-id="{{item.id}}" data-index="{{index}}">
- <text>购买</text>
- </view>
- <view class="tip">
- <text>单次最高抵扣{{item.deduction_money}}元</text>
- </view>
- </view>
- </view>
- <view class="background" wx:if="{{info}}" bindtap="background"></view>
- <view class="model" wx:if="{{info}}">
- <view class="view">
- <text class="title">购买骑行卡</text>
- <view class="content">
- <view class="count">
- <view class="count_a">
- <text class="text">{{infoDetail.name}}</text>
- <!-- <text class="text" wx:if="{{infoDetail.is_limit_times==1}}">{{infoDetail.times}}次</text> -->
- <!-- <text class="text" wx:if="{{infoDetail.is_limit_times==0}}">不限次</text> -->
- <text>(有效期{{infoDetail.effective_days}}天)</text>
- </view>
- <view class="count_b">
- <text>¥{{infoDetail.now_price}}</text>
- <text wx:if="{{infoDetail.is_discount==1}}">{{infoDetail.price}}</text>
- </view>
- </view>
- <text class="title1">使用规则</text>
- <text>1.骑行卡<text style="color:red;">无法抵扣订单调度费</text>。</text>
- <text>2.请在有效期内使用,骑行卡<text style="color:red;">使用完毕或超出有效期</text>即视为无效。</text>
- <text>3.电单车骑行卡生效期间,<text wx:if="{{infoDetail.is_limit_times==0 && infoDetail.day_can_ridding_times!=0}}">每天最多骑行<text style="color:red;">{{infoDetail.day_can_ridding_times}}次</text>,</text><text wx:if="{{setting.start}}">每次骑行最多可抵扣<text
- style="color:red;">{{infoDetail.deduction_money}}</text>元骑行费用</text> <text wx:if="{{!setting.star}}"> 每次可抵扣骑行时长<text style="color:red;">{{infoDetail.deduction_money / setting.per_money * setting.per_minute}}</text>分钟</text>,超出部分依据计费规则计费。</text>
- <text>4.骑行卡<text style="color:red;">一旦购买,不能退还,不能转赠</text>。</text>
- </view>
- <view class="btn1" bindtap="form">
- <text>{{infoDetail.now_price}}元购买</text>
- </view>
- </view>
- <image src="{{img}}weapp/guanbi.png" style="width:48rpx;height:48rpx;" class="over1" bindtap="background"></image>
- </view>
- </view>
- <view class="none" wx:if="{{arr=='' && hot==''}}">
- <image src="/img/none.png" style="width:300rpx;height:300rpx;"></image>
- <text>暂无骑行卡</text>
- </view>
|