12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="box">
- <view class="card">
- <view class="top">
- <view class="text1">骑行卡剩余
- <text style="padding-left:15rpx;" wx:if="{{arr1.is_limit_times==1}}">{{arr1.can_ridding_times}}次</text>
- <text style="padding-left:15rpx;" wx:if="{{arr1.is_limit_times==0}}">不限次</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>2.当前无骑行卡,用户购买或领取电单车骑行卡后,对应<text style="color:red;">骑行卡的优惠权益立即生效</text>,购卡当天产生的未支付骑行订单可使用,但需在电单车骑行卡生效期内使用。</text>
- <text>3.骑行卡无法抵扣因<text style="color:red;">不在运营区域或还车点还车时产生的调度费用</text>,请确保规范骑行。</text>
- <text>4.请在有效期内使用,骑行卡<text style="color:red;">使用完毕或超出有效期</text>即视为无效。</text>
- <text>5.电单车骑行卡生效期间,每次骑行最多可抵扣<text style="color:red;">{{arr1.deduction_money}}</text>元骑行费用,超出部分依据计费规则计费。</text>
- <text>6.如当前已有次卡或月卡,需等当前拥有的卡<text style="color:red;">过期后才能</text>购买次卡。</text>
- <text>7.骑行卡获得后<text style="color:red;">立即生效</text>,一旦购买,不退还购买费用,不能转赠。</text>
- <text>8.骑行卡只适用于<text style="color:red;">分时租赁</text>,不支持日租用车使用。</text>
- </view>
|