withdrawal.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. uni.setNavigationBarColor({
  52. frontColor: '#ffffff',
  53. backgroundColor: '#000000',
  54. });
  55. }
  56. }
  57. </script>
  58. <style lang="scss">
  59. .all {
  60. width: 750rpx;
  61. height: 1334rpx;
  62. }
  63. .top {
  64. width: 690rpx;
  65. height: 560rpx;
  66. background: #191A1F;
  67. border-radius: 20rpx;
  68. margin-left: 30rpx;
  69. }
  70. .topO {
  71. height: 31rpx;
  72. font-size: 32rpx;
  73. color: #FFFFFF;
  74. margin-left: 21rpx;
  75. padding-top: 37rpx;
  76. }
  77. .topT {
  78. width: 222rpx;
  79. height: 68rpx;
  80. border: 2px solid #DDBA82;
  81. border-radius: 10rpx;
  82. margin-left: 20rpx;
  83. margin-top: 60rpx;
  84. }
  85. .TT {
  86. width: 168rpx;
  87. height: 20rpx;
  88. font-size: 26rpx;
  89. color: #FEB041;
  90. margin-left: 23rpx;
  91. margin-top: 20rpx;
  92. }
  93. .topS {
  94. margin-top: 29rpx;
  95. margin-left: 20rpx;
  96. height: 31rpx;
  97. font-size: 32rpx;
  98. color: #FFFFFF;
  99. }
  100. .topF {
  101. width: 648rpx;
  102. height: 73rpx;
  103. background-color: #FEB041;
  104. opacity: 0.09;
  105. border-radius: 20rpx;
  106. margin-left: 20rpx;
  107. margin-top: 39rpx;
  108. .FF {
  109. height: 25rpx;
  110. font-size: 32rpx;
  111. color: #FFFFFF;
  112. padding: 35rpx;
  113. }
  114. .btn {
  115. font-size: 30rpx;
  116. color: #FFFFFF;
  117. }
  118. }
  119. .center {
  120. width: 690rpx;
  121. // height: 460rpx;
  122. background: #191A1F;
  123. border-radius: 20rpx;
  124. margin-top: 20rpx;
  125. margin-left: 30rpx;
  126. padding-bottom: 12rpx;
  127. }
  128. .tx {
  129. height: 27rpx;
  130. font-size: 29rpx;
  131. font-family: PingFang SC;
  132. font-weight: 500;
  133. color: #FFFFFF;
  134. line-height: 30rpx;
  135. margin-left: 34rpx;
  136. padding-top: 36rpx;
  137. }
  138. .buzhou {
  139. width: 624rpx;
  140. // height: 280rpx;
  141. font-size: 24rpx;
  142. font-family: PingFang SC;
  143. font-weight: 500;
  144. color: #999999;
  145. line-height: 41rpx;
  146. margin-left: 33rpx;
  147. margin-top: 50rpx;
  148. }
  149. .last {
  150. width: 690rpx;
  151. height: 90rpx;
  152. background: #feb041;
  153. border-radius: 10rpx;
  154. margin-left: 30rpx;
  155. margin-top: 30rpx;
  156. }
  157. .la {
  158. // width: 126rpx;
  159. height: 31rpx;
  160. font-size: 32rpx;
  161. font-family: PingFang SC;
  162. font-weight: bold;
  163. color: #040404;
  164. line-height: 55rpx;
  165. margin-left: 282rpx;
  166. padding-top: 20rpx;
  167. }
  168. </style>