payDeposit.wxml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--pages/payDeposit/payDeposit.wxml-->
  2. <form bindsubmit="formSubmit" id="container" bindreset="formReset" report-submit='true'>
  3. <view class="container">
  4. <!-- 收货信息 -->
  5. <view class="consignee-info">
  6. <!-- <view class="consignee-info-hint">
  7. <text>确认收货信息(竞买成功后商品将快递到此地址)</text>
  8. </view>
  9. <navigator url="" class="consignee-site">
  10. <view class="consignee-user">
  11. <text class="consignee-user-name">乔凡</text>
  12. <text class="consignee-user-phone">13466853828</text>
  13. </view>
  14. <view class="consignee-user-address">
  15. <text>山西省太原市万柏林区漪汾街2号</text>
  16. </view>
  17. </navigator> -->
  18. </view>
  19. <!-- 风险提示 -->
  20. <!-- <view class="warning">
  21. <text class="warning-title">风险提示</text>
  22. <text class="warning-title">
  23. </text>
  24. </view> -->
  25. <!-- 保证金提示 -->
  26. <view class="deposit-info">
  27. <view class="deposit-sum">
  28. <text>保证金:</text>
  29. <text style="color:#e22">¥{{deposit}}元</text>
  30. </view>
  31. <view class="deposit-protocol">
  32. <text>1、若竞买不成功,保证金将全额退还。</text>
  33. <text>2、若竞买成功,保证金将于您交易完成后全额退还,请您在72小时内支付尾款,逾期未付款将扣除保证金。</text>
  34. </view>
  35. </view>
  36. <!-- 协议 -->
  37. <view class="protocol">
  38. <checkbox-group bindchange="checkboxChange">
  39. <label class="checkbox">
  40. <checkbox value="确认同意" checked='{{agree}}' />
  41. </label>
  42. </checkbox-group>
  43. <view class="protocol-text">
  44. <text>确认同意</text>
  45. <navigator hover-class="none" url="{{'./pages/auctionprotocol/auctionprotocol?auction_way=' + auction_way + '&time=' + time + '&deposit=' + deposit}}">《竞买协议》</navigator>
  46. <text>和</text>
  47. <navigator hover-class="none" url="{{'./pages/depositprotocol/depositprotocol?auction_way=' + auction_way + '&time=' + time + '&deposit=' + deposit}}">《竞买规则及注意事项》</navigator>
  48. <text>和</text>
  49. <navigator hover-class="none" url="{{'./pages/commitment/commitment?auction_way=' + auction_way + '&time=' + time + '&deposit=' + deposit}}">《承诺函》</navigator>
  50. <text>以及</text>
  51. <navigator hover-class="none" url="{{'./pages/networkprotocol/networkprotocol'}}">《山西云得格网络竞价交易规则》</navigator>
  52. </view>
  53. </view>
  54. <!-- 支付功能 -->
  55. <button class="pay" formType="submit">
  56. <text>同意并支付保证金</text>
  57. </button>
  58. </view>
  59. </form>