| 12345678910111213141516171819202122232425262728293031 |
- <view class="container">
- <!-- top-view -->
- <view class="top-view">
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #407DB8">
- <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
- <text slot="title" style="color: #fff;">确认付款</text>
- </van-nav-bar>
- </view>
- <view class="container__content" wx:if="{{ operator }}">
- <van-cell-group>
- <van-cell title="单据编号" value="{{ orderno }}" />
- <van-cell title="综合服务费" value="{{ operator.servicefee }}" />
- <van-cell title="代缴物流保险费" value="{{ operator.logisticsfee }}" />
- <van-cell title="税费保证金" value="{{ operator.taxmargin }}" />
- <van-cell title="汇款银行手续费" value="{{ operator.bankfee }}" />
- <van-cell title="其它费用" value="{{ operator.taxmargin }}" />
- <van-cell title="总共应收" value="{{ operator.totalfee }}" />
- <van-cell title="预收款" value="{{ operator.advanceamount }}" />
- <van-cell title="应收\应退" value="{{ operator.settleamount-operator.advanceamount }}" />
- <van-cell title="账户余额" value="{{ blance }}" />
- </van-cell-group>
- </view>
- <!-- 按钮 -->
- <view class="container__button-view">
- <van-button custom-class="confirm" id="confirm" round color="linear-gradient(to right, #4bb0ff, #666)" block bind:click="doBSFWOperator">确认</van-button>
- <van-button custom-class="cancel" id="cancel" round color="linear-gradient(to right, #999, #aaa)" block bind:click="backToParent">取消</van-button>
- </view>
- </view>
|