tzzz.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="content">
  3. <view class="jg" style="height: 20rpx;"></view>
  4. <view class="user-info">
  5. <view class="money">300</view>
  6. <view class="can-move">
  7. 可转账通证
  8. </view>
  9. </view>
  10. <view class="to-user">
  11. <view class="to-tit">
  12. 收款人账户
  13. </view>
  14. <input type="text" v-model="touser_id" placeholder="请输入收款人账户"/>
  15. </view>
  16. <view class="to-user">
  17. <view class="to-tit">
  18. 转账数量
  19. </view>
  20. <input type="text" v-model="touser_num" placeholder="请输入转账数量"/>
  21. </view>
  22. <view class="btn">
  23. 提交申请
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .user-info {
  39. width: 750rpx;
  40. height: 139rpx;
  41. background: #FFFFFF;
  42. text-align: center;
  43. .money {
  44. padding-top: 25rpx;
  45. font-size: 42rpx;
  46. font-family: PingFang SC;
  47. font-weight: bold;
  48. color: #333333;
  49. }
  50. .can-move {
  51. font-size: 28rpx;
  52. font-family: PingFang SC;
  53. font-weight: 500;
  54. color: #666666;
  55. }
  56. }
  57. .to-user {
  58. margin-top: 20rpx;
  59. width: 750rpx;
  60. height: 160rpx;
  61. background: #FFFFFF;
  62. padding: 36rpx 25rpx;
  63. .to-tit {
  64. font-size: 30rpx;
  65. font-family: PingFang SC;
  66. font-weight: 400;
  67. color: #333333;
  68. padding-bottom: 25rpx;
  69. }
  70. }
  71. .btn {
  72. width: 630rpx;
  73. line-height: 90rpx;
  74. margin: auto;
  75. margin-top: 120rpx;
  76. background: #ff4c4c;
  77. border-radius: 10rpx;
  78. font-size: 36rpx;
  79. font-family: PingFang SC;
  80. font-weight: bold;
  81. color: #FFFFFF;
  82. text-align: center;
  83. }
  84. </style>