gqtx.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <view class="content">
  3. <view class="tx-wrap">
  4. <view class="tx-tit">
  5. 提现股权
  6. </view>
  7. <input type="digit" v-model="txnum" placeholder="请输入提现股权" class="tx-inp" placeholder-class="tx-inp-p">
  8. <view class="gq-detail">
  9. <view class="">
  10. 可提现: (股权)
  11. </view>
  12. <view class="right" @click="">
  13. 全部提现
  14. </view>
  15. </view>
  16. <view class="tx-btn" @click="gqtx">
  17. 提现
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. txnum: ''
  27. }
  28. },
  29. onLoad() {
  30. },
  31. onShow() {
  32. },
  33. onReachBottom() {
  34. },
  35. onReady() {
  36. },
  37. methods: {
  38. gqtx() {
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. .content {
  45. padding-top: 1rpx;
  46. }
  47. .tx-wrap {
  48. width: 700rpx;
  49. // height: 420rpx;
  50. padding: 20rpx 0 50rpx 0;
  51. margin: 19rpx auto;
  52. background-color: #fff;
  53. border-radius: 20rpx;
  54. // display: flex;
  55. // flex-direction: color;
  56. .tx-tit {
  57. margin: auto;
  58. width: 660rpx;
  59. font-size: 32rpx;
  60. color: #333;
  61. font-weight: bold;
  62. border-bottom: 1px solid #eee;
  63. line-height: 87rpx;
  64. }
  65. .tx-inp {
  66. display: block;
  67. width: 660rpx;
  68. height: 114rpx;
  69. font-size: 56rpx;
  70. font-weight: bold;
  71. color: #000;
  72. // padding-left: 20rpx;
  73. border-bottom: 1rpx solid #eee;
  74. margin: auto;
  75. }
  76. .tx-inp-p {
  77. font-size: 36rpx;
  78. }
  79. .gq-detail {
  80. display: flex;
  81. justify-content: space-between;
  82. padding:20rpx;
  83. font-size: 28rpx;
  84. .left {
  85. }
  86. .right {
  87. color: #d74f3a;
  88. }
  89. }
  90. .tx-btn {
  91. width: 660rpx;
  92. height: 70rpx;
  93. line-height: 70rpx;
  94. background-color: #ec643e;
  95. color: #fff;
  96. font-size: 32rpx;
  97. text-align: center;
  98. margin: 30rpx auto 0;
  99. border-radius: 35rpx;
  100. }
  101. }
  102. </style>