1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!--pages/order/confirm.wxml-->
- <view class="containermiddle">
- <van-row>
- <van-cell></van-cell>
- </van-row>
- <van-row>
- <view>
- <van-col span="4">
- <van-image width="100" height="100" src="{{images[0]}}"></van-image>
- </van-col>
- </view>
- <van-col span="10" offset="4" style="font-size:14px">{{stationName}}</van-col>
- <van-col span="10" offset="4" style="font-size:12px">油枪号:{{gunNo}}号</van-col>
- <van-col span="10" offset="4" style="font-size:12px">油品名:{{oilName}}</van-col>
- <van-col span="10" offset="4" style="font-size:12px">油站价:¥{{oilPrice}}/L</van-col>
- <van-col span="10" offset="4" style="font-size:12px">优惠价:¥{{oilPrice-discountPrice}}/L</van-col>
- </van-row>
-
- <van-row>
- <van-cell title="订单金额" icon="balance-o"><text>¥{{orderMoney}}</text></van-cell>
- </van-row>
- <van-row>
- <van-cell title="加油升数" icon="coupon-o"><text>{{oilLitre}}L</text></van-cell>
- </van-row>
- <van-row>
- <van-cell title="优惠金额" icon="discount" arrow-direction="right">-¥{{youHuiAmount}}</van-cell>
- </van-row>
- <!-- <van-row>
- <van-cell title="立减" icon="coupon-o" arrow-direction="right">¥{{liJian}}</van-cell>
- </van-row>
- <van-row>
- <van-cell title="满减" icon="coupon-o" arrow-direction="right">¥{{manJian}}</van-cell>
- </van-row>
- <van-row>
- <van-cell title="优惠" icon="coupon-o" is-link value="暂无可用优惠券" arrow-direction="right">{{youHui}}</van-cell>
- </van-row> -->
- <van-row>
- <van-cell title="油站会员" icon="vip-card-o" is-link value="立即开通" arrow-direction="right">{{vipMoney}}</van-cell>
- </van-row>
- <view class="btn-box">
- <van-submit-bar price="{{ apayMoney*100 }}" button-text="提交订单" bind:submit="pay" button-class="btn-class">
- </van-submit-bar>
- </view>
- <van-toast id="van-toast" />
- </view>
|