123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <scroll-view scroll-y class="bg-scroll-view">
- <view style="height: 16rpx;"></view>
- <view class="header-bg">
- <view class="header">
- <text>购买月份:{{head[0]}}</text>
- <text>{{head[1]}}</text>
- </view>
- <view class="list">
- <text>{{list.l}}</text>
- <text>{{list.r}}</text>
- </view>
- <image src="../../../../icon/home/order_separate.png"></image>
- <view class="total">
- <text>共计</text>
- <text>¥{{total}}</text>
- </view>
- </view>
- <view class="discount" bindtap="discountChoose">
- <text>优惠券</text>
- <text hidden="{{discount.count == 0}}">{{discount.count}}张可用</text>
- <text>{{discount.status}}</text>
- <image src="../../../../icon/public/arrow_right.png"></image>
- </view>
- <view class="scroll-view-bottom-view{{adapter.suffix}}"></view>
- </scroll-view>
- <view class="bottom-view{{adapter.suffix}}">
- <view bindtap="payLaterAction">
- <text>提交订单,稍后支付</text>
- <image src="../../../../icon/public/arrow_right.png"></image>
- </view>
- <view></view>
- <view>
- <view>
- <text>¥</text>
- <text>{{pay.i}}</text>
- <text>{{pay.d}}</text>
- </view>
- <text hidden="{{discount.fee == 0}}">(已减{{discount.fee}}元)</text>
- <view bindtap="payAction">确认支付</view>
- </view>
- </view>
|