transaction.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="all">
  3. <view class="top">
  4. <view class="one">
  5. <view class="xian"></view>
  6. <view class="jy">{{$t('password.a1')}}</view>
  7. </view>
  8. <view class="heng"></view>
  9. <view class="one">
  10. <view class="pas">{{$t('password.a2')}}</view>
  11. <view class="">
  12. <input class="npas" type="password" v-model="password" focus :placeholder="$t('password.a3')" />
  13. </view>
  14. </view>
  15. <view class="heng"></view>
  16. <view class="one">
  17. <view class="pas">{{$t('password.a4')}}</view>
  18. <view class="">
  19. <input class="nepas" type="password" v-model="password" focus :placeholder="$t('password.a5')" />
  20. </view>
  21. </view>
  22. <view class="heng"></view>
  23. <view class="one">
  24. <view class="pas">{{$t('password.a6')}}</view>
  25. <view class="">
  26. <input class="npas" type="password" v-model="password" focus :placeholder="$t('password.a7')" />
  27. </view>
  28. <view class="yanzheng">{{$t('password.a6')}}</view>
  29. </view>
  30. </view>
  31. <view class="last">
  32. <view class="an">
  33. <view class="qr">{{$t('password.a7')}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. password: '',
  43. };
  44. }
  45. }
  46. </script>
  47. <style lang="scss">
  48. .all {
  49. width: 750rpx;
  50. height: 1334rpx;
  51. background-color: #000000;
  52. }
  53. .top {
  54. width: 750rpx;
  55. height: 430rpx;
  56. background: #191A1F;
  57. }
  58. .one {
  59. display: flex;
  60. justify-content: start;
  61. }
  62. .xian {
  63. width: 2rpx;
  64. height: 30rpx;
  65. background: #FDB242 ;
  66. margin-left: 31rpx;
  67. margin-top: 40rpx;
  68. }
  69. .jy {
  70. height: 29rpx;
  71. font-size: 30rpx;
  72. font-weight: 500;
  73. color: #FFFFFF;
  74. line-height: 55rpx;
  75. margin-left: 17rpx;
  76. margin-top: 27rpx;
  77. }
  78. .heng {
  79. width: 750rpx;
  80. height: 1rpx;
  81. background: #F3F3F3;
  82. margin-top: 30rpx;
  83. }
  84. .pas {
  85. height: 25rpx;
  86. font-size: 26rpx;
  87. font-weight: 500;
  88. color: #FFFFFF;
  89. line-height: 55rpx;
  90. margin-left: 29rpx;
  91. margin-top: 34rpx;
  92. }
  93. .npas {
  94. height: 25rpx;
  95. font-size: 26rpx;
  96. font-weight: 500;
  97. color: #999999;
  98. line-height: 55rpx;
  99. margin-left: 200rpx;
  100. margin-top: 40rpx;
  101. }
  102. .nepas {
  103. height: 25rpx;
  104. font-size: 26rpx;
  105. font-weight: 500;
  106. color: #999999;
  107. line-height: 55rpx;
  108. margin-left: 178rpx;
  109. margin-top: 40rpx;
  110. }
  111. .yanzheng {
  112. height: 25rpx;
  113. font-size: 26rpx;
  114. font-weight: 500;
  115. color: #FDB242;
  116. line-height: 55rpx;
  117. margin-top: 34rpx;
  118. }
  119. .an {
  120. width: 690rpx;
  121. height: 80rpx;
  122. background: #FDB242 ;
  123. border-radius: 40rpx;
  124. margin-left: 30rpx;
  125. margin-top: 62rpx;
  126. }
  127. .qr {
  128. // height: 28rpx;
  129. font-size: 30rpx;
  130. // font-family: PingFang SC;
  131. text-align: center;
  132. font-weight: 500;
  133. color: #0D0A21;
  134. line-height: 1;
  135. // margin-left: 316rpx;
  136. padding-top: 16rpx;
  137. }
  138. </style>