transfter-balance.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!-- 提现方式 -->
  2. <template>
  3. <ui-modal
  4. class="ss-checkout-counter-wrap"
  5. name="walletTransfterBalance"
  6. mask="40"
  7. align="bottom"
  8. ui="ss-r-t-30"
  9. :showCancel="false"
  10. :option="false"
  11. >
  12. <view class="ss-modal-box bg-white ss-flex-col">
  13. <view class="modal-header ss-flex-col ss-col-left">
  14. <text class="cicon-close-round close-icon" @tap="hideModal"></text>
  15. <text class="modal-title ss-m-b-20">转余额</text>
  16. <text class="modal-subtitle">将您的佣金转到钱包中继续消费</text>
  17. </view>
  18. <view class="modal-content ss-flex-1">
  19. <view class="input-box ss-flex ss-col-center border-bottom">
  20. <view calss="unit">¥</view>
  21. <ui-input class="ss-flex-1 ss-p-l-10" type="number" placeholder="请输入金额" />
  22. </view>
  23. </view>
  24. <view class="modal-footer ss-flex ss-row-center ss-col-center">
  25. <button class="ss-reset-button save-btn" @tap="hideModal">确定</button>
  26. </view>
  27. </view>
  28. </ui-modal>
  29. </template>
  30. <script setup>
  31. /**
  32. * 转余额弹窗
  33. */
  34. </script>
  35. <style lang="scss" scoped>
  36. .ss-modal-box {
  37. border-radius: 30rpx 30rpx 0 0;
  38. max-height: 1000rpx;
  39. .modal-header {
  40. position: relative;
  41. padding: 60rpx 40rpx 40rpx;
  42. .modal-title {
  43. font-size: 32rpx;
  44. font-weight: bold;
  45. }
  46. .modal-subtitle {
  47. font-size: 26rpx;
  48. font-weight: 400;
  49. color: $gray-d;
  50. }
  51. .close-icon {
  52. position: absolute;
  53. top: 10rpx;
  54. right: 20rpx;
  55. font-size: 46rpx;
  56. opacity: 0.2;
  57. }
  58. }
  59. .modal-content {
  60. overflow-y: auto;
  61. padding: 40rpx;
  62. .input-box {
  63. width: 624rpx;
  64. height: 100rpx;
  65. margin-bottom: 40rpx;
  66. .unit {
  67. font-size: 48rpx;
  68. color: #333;
  69. }
  70. }
  71. }
  72. .modal-footer {
  73. height: 120rpx;
  74. .save-btn {
  75. width: 710rpx;
  76. height: 80rpx;
  77. border-radius: 40rpx;
  78. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  79. color: $white;
  80. }
  81. }
  82. }
  83. </style>