withdrawal.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="all">
  3. <view class="top">
  4. <view class="topO">
  5. {{$t('userinfo.u6')}}
  6. </view>
  7. <view class="topT">
  8. <view class="TT">USDT-TRC20</view>
  9. </view>
  10. <view class="topS">
  11. {{$t('userinfo.u7')}}
  12. </view>
  13. <view class="topF">
  14. <input class="FF" type="text" v-model="withdrawal" placeholder="请输入提现地址" placeholder-class="placeholder" />
  15. </view>
  16. <view class="topS">
  17. {{$t('userinfo.u8')}}
  18. </view>
  19. <view class="topF">
  20. <input class="FF" type="text" v-model="withdrawal" placeholder="请输入提现数量" placeholder-class="placeholder" />
  21. <view class="btn">全部</view>
  22. </view>
  23. </view>
  24. <view class="center">
  25. <view class="tx">{{$t('userinfo.u9')}}</view>
  26. <view class="buzhou">
  27. <view class="">1.{{$t('userinfo.u10')}} </view>
  28. <view class="">① {{$t('userinfo.u11')}}</view>
  29. <view class="">② {{$t('userinfo.u12')}} </view>
  30. <view class="">2.{{$t('userinfo.u13')}}</view>
  31. <view class="">3.{{$t('userinfo.u14')}}</view>
  32. <view class="">4.{{$t('userinfo.u15')}}</view>
  33. </view>
  34. </view>
  35. <view class="last">
  36. <view class="la">{{$t('userinfo.u16')}}</view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. withdrawal: '', //提现地址
  45. };
  46. },
  47. onLoad() {
  48. uni.setNavigationBarTitle({
  49. title: this.$t("tab.a8"),
  50. });
  51. }
  52. }
  53. </script>
  54. <style lang="scss">
  55. .all {
  56. width: 750rpx;
  57. height: 1334rpx;
  58. }
  59. .top {
  60. width: 690rpx;
  61. height: 560rpx;
  62. background: #191A1F;
  63. border-radius: 20rpx;
  64. margin-left: 30rpx;
  65. }
  66. .topO {
  67. height: 31rpx;
  68. font-size: 32rpx;
  69. color: #FFFFFF;
  70. margin-left: 21rpx;
  71. padding-top: 37rpx;
  72. }
  73. .topT {
  74. width: 222rpx;
  75. height: 68rpx;
  76. border: 2px solid #DDBA82;
  77. border-radius: 10rpx;
  78. margin-left: 20rpx;
  79. margin-top: 60rpx;
  80. }
  81. .TT {
  82. width: 168rpx;
  83. height: 20rpx;
  84. font-size: 26rpx;
  85. color: #FEB041;
  86. margin-left: 23rpx;
  87. margin-top: 20rpx;
  88. }
  89. .topS {
  90. margin-top: 29rpx;
  91. margin-left: 20rpx;
  92. height: 31rpx;
  93. font-size: 32rpx;
  94. color: #FFFFFF;
  95. }
  96. .topF {
  97. width: 648rpx;
  98. height: 73rpx;
  99. background-color: #FEB041;
  100. opacity: 0.09;
  101. border-radius: 20rpx;
  102. margin-left: 20rpx;
  103. margin-top: 39rpx;
  104. .FF {
  105. height: 25rpx;
  106. font-size: 32rpx;
  107. color: #FFFFFF;
  108. padding: 35rpx;
  109. }
  110. .btn {
  111. font-size: 30rpx;
  112. color: #FFFFFF;
  113. }
  114. }
  115. .center {
  116. width: 690rpx;
  117. // height: 460rpx;
  118. background: #191A1F;
  119. border-radius: 20rpx;
  120. margin-top: 20rpx;
  121. margin-left: 30rpx;
  122. padding-bottom: 12rpx;
  123. }
  124. .tx {
  125. height: 27rpx;
  126. font-size: 29rpx;
  127. font-family: PingFang SC;
  128. font-weight: 500;
  129. color: #FFFFFF;
  130. line-height: 30rpx;
  131. margin-left: 34rpx;
  132. padding-top: 36rpx;
  133. }
  134. .buzhou {
  135. width: 624rpx;
  136. // height: 280rpx;
  137. font-size: 24rpx;
  138. font-family: PingFang SC;
  139. font-weight: 500;
  140. color: #999999;
  141. line-height: 41rpx;
  142. margin-left: 33rpx;
  143. margin-top: 50rpx;
  144. }
  145. .last {
  146. width: 690rpx;
  147. height: 90rpx;
  148. background: #feb041;
  149. border-radius: 10rpx;
  150. margin-left: 30rpx;
  151. margin-top: 30rpx;
  152. }
  153. .la {
  154. // width: 126rpx;
  155. height: 31rpx;
  156. font-size: 32rpx;
  157. font-family: PingFang SC;
  158. font-weight: bold;
  159. color: #040404;
  160. line-height: 55rpx;
  161. margin-left: 282rpx;
  162. padding-top: 20rpx;
  163. }
  164. </style>