transfer.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <view class="container">
  3. <!-- 佣金转账 -->
  4. <!-- <view class="top-one">
  5. <image src="../../static/img/xiangzuo.png" mode="scaleToFill"></image>
  6. <view class="text">佣金转账</view>
  7. </view> -->
  8. <!-- 可转账佣金 -->
  9. <view class="top-two">
  10. <view class="count">360</view>
  11. <view class="text">可转账佣金</view>
  12. </view>
  13. <view class="top-three">
  14. <view class="text">收款入账户</view>
  15. <input class="input" type="number" placeholder="请输入收款人账户"/>
  16. </view>
  17. <view class="top-four">
  18. <view class="text">转账数量</view>
  19. <view class="row">
  20. <text class="tit">¥</text>
  21. <input class="input" type="number" placeholder="请输入转账数量" />
  22. </view>
  23. </view>
  24. <view class="btn" @click="nav('/pages/user/submit')" >提交申请</view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data () {
  30. return {
  31. }
  32. },
  33. methods: {
  34. nav (url) {
  35. uni.navigateTo({
  36. url
  37. })
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss">
  43. .container {
  44. background-color: #F2F3F5;
  45. width: 750rpx;
  46. height: 1334rpx;
  47. .top-two {
  48. margin-top: 20rpx;
  49. height: 160rpx;
  50. background-color: #fff;
  51. .count {
  52. width: 76rpx;
  53. height: 34rpx;
  54. font-size: 42rpx;
  55. font-family: PingFang SC;
  56. font-weight: bold;
  57. color: #333333;
  58. line-height: 110rpx;
  59. margin: 0 auto;
  60. }
  61. .text {
  62. width: 140rpx;
  63. height: 26rpx;
  64. font-size: 28rpx;
  65. font-family: PingFang SC;
  66. font-weight: 500;
  67. color: #666666;
  68. margin: 0 auto;
  69. margin-top: 50rpx;
  70. }
  71. }
  72. .top-three {
  73. margin-top: 20rpx;
  74. height: 160rpx;
  75. background-color: #fff;
  76. .text {
  77. width: 150rpx;
  78. height: 29rpx;
  79. font-size: 30rpx;
  80. font-family: PingFang SC;
  81. font-weight: 400;
  82. color: #333333;
  83. line-height: 110rpx;
  84. margin-left: 25rpx;
  85. }
  86. .input {
  87. margin-top: 65rpx;
  88. margin-left: 25rpx;
  89. }
  90. }
  91. .top-four {
  92. margin-top: 20rpx;
  93. height: 160rpx;
  94. background-color: #fff;
  95. .text {
  96. width: 150rpx;
  97. height: 29rpx;
  98. font-size: 30rpx;
  99. font-family: PingFang SC;
  100. font-weight: 400;
  101. color: #333333;
  102. line-height: 110rpx;
  103. margin-left: 25rpx;
  104. }
  105. .row {
  106. display: flex;
  107. // justify-content: center;
  108. margin-top: 65rpx;
  109. margin-left: 20rpx;
  110. .tit {
  111. font-size: 30rpx;
  112. font-family: PingFang SC;
  113. font-weight: 400;
  114. color: #333333;
  115. margin-right: 10rpx;
  116. }
  117. }
  118. }
  119. .btn {
  120. display: flex;
  121. justify-content: center;
  122. align-items: center;
  123. width: 674rpx;
  124. height: 90rpx;
  125. background: linear-gradient(-35deg, #F8DD4F, #FBEB77);
  126. border-radius: 44rpx;
  127. margin-top: 138rpx;
  128. margin-left: 38rpx;
  129. }
  130. }
  131. </style>