withdraw.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <template>
  2. <view class="content">
  3. <view class="title">
  4. <view class="money">
  5. {{money}}
  6. </view>
  7. <view class="name">
  8. 可用额度
  9. </view>
  10. </view>
  11. <view class="tixian">
  12. <view class="tixian-title">
  13. <view class="title-left">
  14. <view class="kkk">
  15. </view>
  16. <text>提现信息</text>
  17. </view>
  18. <view class="title-right">
  19. <image src="../../static/usdt/right.png" mode=""></image>
  20. </view>
  21. </view>
  22. <view class="erweima flex">
  23. <view class="box1">
  24. 二维码
  25. </view>
  26. <view class="img">
  27. <image src="../../static/usdt/image.png" mode=""></image>
  28. </view>
  29. </view>
  30. <view class="quantity flex">
  31. <view class="box">
  32. 提现数量
  33. </view>
  34. <input class="input" type="text" :placeholder='text' />
  35. </view>
  36. <view class="quantity flex">
  37. <view class="box">
  38. 手续费
  39. </view>
  40. <input class="input" type="text" :placeholder='text1' />
  41. </view>
  42. <view class="quantity flex">
  43. <view class="box">
  44. 实际到账数量
  45. </view>
  46. <input class="input" type="text" placeholder="0.00" />
  47. </view>
  48. </view>
  49. <view class="button">
  50. 确认提现
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. money: 1000,
  59. shouxu:20
  60. }
  61. },
  62. methods: {
  63. },
  64. computed: {
  65. text(){
  66. return '输入所需提币数量(最低' + this.money + 'USDT起提'
  67. },
  68. text1(){
  69. return '提取'+this.shouxu+'%手续费'
  70. }
  71. }
  72. }
  73. </script>
  74. <style lang="scss">
  75. page,
  76. .content {
  77. height: 100%;
  78. background: #F3F3F3;
  79. padding: 0;
  80. margin: 0;
  81. }
  82. .box{
  83. width: 200rpx;
  84. margin: 0 30rpx;
  85. }
  86. .input{
  87. width: 100%;
  88. font-size: 24rpx;
  89. font-family: PingFang SC;
  90. font-weight: 500;
  91. color: #999999;
  92. line-height: 55rpx;
  93. }
  94. .title {
  95. background-color: #FFFFFF;
  96. width: 100%;
  97. height: 150rpx;
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. .money {
  103. font-size: 48rpx;
  104. font-family: PingFang SC;
  105. font-weight: bold;
  106. color: #333333;
  107. line-height: 48rpx;
  108. }
  109. .name {
  110. font-size: 24rpx;
  111. font-family: PingFang SC;
  112. font-weight: bold;
  113. color: #666666;
  114. line-height: 46rpx;
  115. }
  116. }
  117. .tixian {
  118. width: 100%;
  119. background-color: #FFFFFF;
  120. margin: 20rpx 0;
  121. display: flex;
  122. flex-direction: column;
  123. .tixian-title {
  124. border-bottom: #F3F3F3 solid 0.1rpx;
  125. width: 100%;
  126. padding: 20rpx 0;
  127. .title-left {
  128. display: flex;
  129. align-items: center;
  130. .kkk {
  131. margin: 0 16rpx 0 30rpx;
  132. width: 2rpx;
  133. height: 30rpx;
  134. background: linear-gradient(90deg, #44BFEC, #438BED);
  135. }
  136. text {
  137. font-size: 30rpx;
  138. font-family: PingFang SC;
  139. font-weight: bold;
  140. color: #333333;
  141. line-height: 55rpx;
  142. }
  143. }
  144. .title-right {
  145. width: 28rpx;
  146. height: 32rpx;
  147. image {
  148. width: 100%;
  149. height: 100%;
  150. }
  151. }
  152. }
  153. .erweima{
  154. display: flex;
  155. justify-content: flex-start;
  156. width: 100%;
  157. .box1{
  158. margin: 30rpx;
  159. font-size: 24rpx;
  160. font-family: PingFangSC;
  161. font-weight: 500;
  162. color: #333333;
  163. width:140rpx;
  164. height: 100rpx;
  165. }
  166. .img{
  167. width:100rpx;
  168. height: 100rpx;
  169. image{
  170. width: 100%;
  171. height: 100%;
  172. }
  173. }
  174. }
  175. .quantity{
  176. border-bottom: #F3F3F3 solid 0.1rpx;
  177. display: flex;
  178. justify-content: center;
  179. width: 100%;
  180. height: 80rpx;
  181. font-size: 24rpx;
  182. font-family: PingFangSC;
  183. font-weight: 500;
  184. color: #333333;
  185. line-height: 80rpx;
  186. }
  187. }
  188. .button{
  189. margin: 100rpx 30rpx;
  190. text-align: center;
  191. width: 690rpx;
  192. height: 80rpx;
  193. background: linear-gradient(90deg, #44BFEC, #438BED);
  194. border-radius: 40rpx;
  195. font-size: 30rpx;
  196. font-family: PingFangSC;
  197. font-weight: 500;
  198. color: #FFFFFF;
  199. line-height: 80rpx;
  200. }
  201. </style>