index.wxml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <view class="container">
  2. <!-- top-view -->
  3. <view class="top-view">
  4. <!-- 导航栏 -->
  5. <van-nav-bar custom-style="background-color: #407DB8">
  6. <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
  7. <text slot="title" style="color: #fff;">确认预付款</text>
  8. </van-nav-bar>
  9. </view>
  10. <view class="container__content" wx:if="{{ operator }}">
  11. <van-cell-group>
  12. <van-cell title="单据编号" value="{{ orderno }}" />
  13. <van-cell title="税费保证金" value="{{ operator.taxmargin }}" />
  14. <van-cell title="汇款银行手续费" value="{{ operator.bankfee }}" />
  15. <van-cell title="代缴物流保险费" value="{{ operator.logisticsfee }}" />
  16. <van-cell title="综合服务费" value="{{ operator.servicefee }}" />
  17. <van-cell title="其它费用" value="{{ operator.otherfee }}" />
  18. <van-cell title="总共" value="{{ operator.totalfee }}" />
  19. <van-cell title="账户可用余额" value="{{ blance }}" />
  20. </van-cell-group>
  21. </view>
  22. <!-- 按钮 -->
  23. <view class="container__button-view">
  24. <van-button custom-class="confirm" id="confirm" round color="linear-gradient(to right, #4bb0ff, #666)" block bind:click="doBSFWOperator">确认</van-button>
  25. <van-button custom-class="cancel" id="cancel" round color="linear-gradient(to right, #999, #aaa)" block bind:click="backToParent">取消</van-button>
  26. </view>
  27. </view>