transfers.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="center">
  3. <view class="top">
  4. <view class="top-num">{{ jf }}</view>
  5. <view class="top-font">可转账购物积分</view>
  6. </view>
  7. <view class="main">
  8. <view class="main-font">收款人账户</view>
  9. <input class="main-input" type="text" value="" v-model="uid" placeholder="请输入收款人账户" placeholder-class="main-input" />
  10. </view>
  11. <view class="main">
  12. <view class="main-font">转账数量</view>
  13. <input class="main-input" type="text" value="" v-model="num" placeholder="请输入转账数量" placeholder-class="main-input" />
  14. </view>
  15. <view class="btn">
  16. 提交申请
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. jf: 360, //可转账购物积分
  25. uid: '', //收款人账户
  26. num: '' //转账数量
  27. };
  28. }
  29. };
  30. </script>
  31. <style lang="scss">
  32. page,
  33. .center {
  34. background: #f2f3f5;
  35. height: 100%;
  36. }
  37. .top {
  38. margin-top: 20rpx;
  39. background: #ffffff;
  40. padding: 30rpx 0;
  41. text-align: center;
  42. .top-num {
  43. font-size: 42rpx;
  44. font-family: PingFang SC;
  45. font-weight: bold;
  46. color: #333333;
  47. }
  48. .top-font {
  49. font-size: 28rpx;
  50. font-family: PingFang SC;
  51. font-weight: 500;
  52. color: #666666;
  53. }
  54. }
  55. .main {
  56. padding: 36rpx 24rpx;
  57. background-color: #ffffff;
  58. margin-top: 20rpx;
  59. .main-font {
  60. font-size: 30rpx;
  61. font-family: PingFang SC;
  62. font-weight: 400;
  63. color: #333333;
  64. }
  65. .main-input {
  66. margin-top: 10rpx;
  67. font-size: 28rpx;
  68. font-family: PingFang SC;
  69. font-weight: 400;
  70. color: #999999;
  71. line-height: 110px;
  72. }
  73. }
  74. .btn {
  75. text-align: center;
  76. margin: 120rpx auto;
  77. width: 670rpx;
  78. height: 88rpx;
  79. background: linear-gradient(0deg, #2E58FF, #32C6FF);
  80. border-radius: 10px;
  81. text-align: center;
  82. line-height: 88rpx;
  83. font-size: 32rpx;
  84. font-family: SourceHanSansCN;
  85. font-weight: 500;
  86. color: #FEFEFE;
  87. }
  88. </style>