1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <view class="content{{suffix}}">
- <view class="detail">
- <view class="top">
- <text>购买月份:{{date}}</text>
- <text style="font-size: 28rpx">{{name}} {{idcard}}</text>
- <text style="font-size: 28rpx">{{res.city}}/{{res.hukou}}</text>
- </view>
- <view class="bottom">
- <view><text>购买时长</text><text>{{res.nums}}个月</text></view>
- <view s-if="{{shebao!=0}}"><text>社保费用</text><text>¥{{shebao}}</text></view>
- <view s-if="{{fund!=0}}"><text>公积金费用</text><text>¥{{fund}}</text></view>
- <view s-if="newCard"><text>社保卡</text><text>¥{{card_charge}}/一次性</text></view>
- <view class="service"><text>服务费</text><text>¥{{service}}</text></view>
- <view class="line"><image src="../.././../icon/home/order_separate.png"></image></view>
- <view class="totalPrice">
- <text>共计</text>
- <text>¥{{totalPrice}}</text>
- </view>
- </view>
- </view>
- <view class="cheap" bindtap="goCheap">
- <view><text>优惠券</text><text class="red" s-if="{{cheapCount}}">{{cheapCount}}张可用</text></view>
- <view><text>{{cheapStatus}}</text><image class="arrow" src="../../../icon/public/arrow_right.png"></image></view>
- </view>
- </view>
- <view class="footer{{suffix}}">
- <view class="wrap" bindtap="createPayLaterOrder">
- <text>提交订单,稍后支付</text>
- <image src="../../../icon/public/arrow_right.png" class="arrow"></image>
- </view>
- <view class="wrap">
- <view>
- <view class="totalPrice">
- <text>¥{{totalPriceArr[0]}}</text>
- <text>{{totalPriceArr[1]}}</text>
- <text s-if="{{cheapMoney}}">(已减{{cheapMoney}}元)</text>
- </view>
- </view>
- <view class="btn" bindtap="payAction">确认支付</view>
- </view>
- </view>
|