| 123456789101112131415161718192021222324252627282930313233343536 |
- <view class="container">
- <!-- top-view -->
- <view class="top-view">
- <!-- 导航栏 -->
- <van-nav-bar custom-style="background-color: #E92020">
- <van-icon slot="left" name="arrow-left" size="25px" color="white" bind:click="backToParent"/>
- <text slot="title" style="color: white;">确认预付款</text>
- </van-nav-bar>
- </view>
- <view class="container__content" wx:if="{{ operator}}">
- <van-cell-group>
- <van-cell title="单据编号" value="{{ order.orderid }}"></van-cell>
- <van-cell title="GIA检测费" value="{{ operator.giarmbfee }}"></van-cell>
- <van-cell title="折合人民币" value="{{ operator.giarmbfee*operator.exchangerate }}"></van-cell>
- <van-cell title="海关税费" value="{{ operator.customsfee }}"></van-cell>
- <van-cell title="汇款银行手续费" value="{{ operator.bankfee }}"></van-cell>
- <van-cell title="代缴物流保险费" value="{{ operator.logisticsfee }}"></van-cell>
- <van-cell title="综合服务费" value="{{ operator.servicefee }}"></van-cell>
- <van-cell title="其它费用" value="{{ operator.otherfee }}"></van-cell>
- <van-cell title="总共" value="{{ operator.totalfee }}"></van-cell>
- <van-cell title="账户可用余额" value="{{ ta.currentbalance }}"></van-cell>
- </van-cell-group>
- </view>
- <view class="container__notify">付款通知书(预付款).pdf</view>
- <!-- 按钮 -->
- <view class="container__button-view">
- <van-button custom-class="confirm" id="confirm" round color="linear-gradient(to right, #4bb0ff, #666)" block bind:click="doCJJCOperator">确认</van-button>
- <van-button custom-class="cancel" id="cancel" round color="linear-gradient(to right, #4bb0ff, #F7A657)" block bind:click="backToParent">取消</van-button>
- </view>
- </view>
-
|