12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="box">
- <view class="card">
- <view class="top">
- <view class="text1" wx:if="{{arr1.is_limit_times==1}}">骑行卡剩余
- <text style="color:red;padding-left:15rpx;">{{arr1.can_ridding_times}}次</text>
- </view>
- <view class="text2" wx:if="{{arr1.is_limit_times==0}}">每天<text style="color:red;">{{arr1.day_can_ridding_times}}</text>次,<text class="text" wx:if="{{setting.star}}">每次可抵<text style="color:red;">{{arr1.deduction_money}}</text>元</text> <text class="text" wx:if="{{!setting.star}}"> 每次<text style="color:red;">{{arr1.deduction_money / setting.per_money * setting.per_minute}}</text>分钟</text>
- </view>
- </view>
- <text class="time">有效期至:{{arr1.expiration_time}}</text>
- <view class="absoult" bindtap="goBuy">
- <text>去购买</text>
- </view>
- <text class="title" bindtap="show">骑行规则</text>
- </view>
- <view class="list">
- <text class="title1">购买历史</text>
- <view class="orderList" wx:for="{{arr}}" wx:key="key" wx:if="{{arr!=''}}">
- <view class="listTop flexB">
- <view>
- <text>支付金额:</text>
- <text>¥ {{item.pay_money}}</text>
- </view>
- </view>
- <view class="orderTime">
- <text>支付时间:</text>
- <text>{{item.pay_time}}</text>
- </view>
- <view class="oderBottom">
- <view class="flexB">
- <text>订单号:{{item.no}}</text>
- <text style="color:red;">{{item.pay_status}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="background" wx:if="{{show}}" bindtap="hide" catchtouchmove="return"></view>
- <view class="model" wx:if="{{show}}" catchtouchmove="return">
- <image src="{{img}}weapp/guanbi.png" style="width:48rpx;height:48rpx;" class="over1" bindtap="hide"></image>
- <text class="title1">使用规则</text>
- <!-- <text>1.用户购买电单车骑行卡后,对应<text style="color:red;">骑行卡的优惠权益立即生效</text>。</text> -->
- <text>1.骑行卡<text style="color:red;">无法抵扣订单调度费</text>。</text>
- <text>2.请在有效期内使用,骑行卡<text style="color:red;">使用完毕或超出有效期</text>即视为无效。</text>
- <text>3.电单车骑行卡生效期间,<text wx:if="{{arr1.is_limit_times==0 && arr1.day_can_ridding_times!=0}}">每天最多骑行<text style="color:red;">{{arr1.day_can_ridding_times}}次</text>,</text> <text wx:if="{{setting.start}}">每次骑行最多可抵扣<text
- style="color:red;">{{arr1.deduction_money}}</text>元骑行费用</text> <text wx:if="{{!setting.star}}"> 每次可抵扣骑行时长<text style="color:red;">{{arr1.deduction_money / setting.per_money * setting.per_minute}}</text>分钟</text>,超出部分依据计费规则计费。</text>
- <text>4.骑行卡<text style="color:red;">一旦购买,不能退还,不能转赠</text>。</text>
- <!-- <text style="padding-bottom:20rpx;">6.骑行卡只适用于<text style="color:red;">分时租赁</text>,不支持日租用车使用。</text> -->
- </view>
|