transaction.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="all">
  3. <view class="top">
  4. <view class="one">
  5. <view class="xian"></view>
  6. <view class="jy">修改交易密码</view>
  7. </view>
  8. <view class="heng"></view>
  9. <view class="one">
  10. <view class="pas">新密码</view>
  11. <view class="">
  12. <input class="npas" type="password" v-model="password" focus placeholder="请输入新密码" />
  13. </view>
  14. </view>
  15. <view class="heng"></view>
  16. <view class="one">
  17. <view class="pas">重复密码</view>
  18. <view class="">
  19. <input class="nepas" type="password" v-model="password" focus placeholder="请重复输入密码" />
  20. </view>
  21. </view>
  22. <view class="heng"></view>
  23. <view class="one">
  24. <view class="pas">验证码</view>
  25. <view class="">
  26. <input class="npas" type="password" v-model="password" focus placeholder="请输入新密码" />
  27. </view>
  28. <view class="yanzheng">验证码</view>
  29. </view>
  30. </view>
  31. <view class="last">
  32. <view class="an">
  33. <view class="qr">确认</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-family: PingFang SC;
  73. font-weight: 500;
  74. color: #FFFFFF;
  75. line-height: 55rpx;
  76. margin-left: 17rpx;
  77. margin-top: 27rpx;
  78. }
  79. .heng {
  80. width: 750rpx;
  81. height: 1rpx;
  82. background: #F3F3F3;
  83. margin-top: 30rpx;
  84. }
  85. .pas {
  86. height: 25rpx;
  87. font-size: 26rpx;
  88. font-family: PingFang SC;
  89. font-weight: 500;
  90. color: #FFFFFF;
  91. line-height: 55rpx;
  92. margin-left: 29rpx;
  93. margin-top: 34rpx;
  94. }
  95. .npas {
  96. height: 25rpx;
  97. font-size: 26rpx;
  98. font-family: PingFangSC;
  99. font-weight: 500;
  100. color: #999999;
  101. line-height: 55rpx;
  102. margin-left: 200rpx;
  103. margin-top: 40rpx;
  104. }
  105. .nepas {
  106. height: 25rpx;
  107. font-size: 26rpx;
  108. font-family: PingFangSC;
  109. font-weight: 500;
  110. color: #999999;
  111. line-height: 55rpx;
  112. margin-left: 178rpx;
  113. margin-top: 40rpx;
  114. }
  115. .yanzheng {
  116. height: 25rpx;
  117. font-size: 26rpx;
  118. font-family: PingFang SC;
  119. font-weight: 500;
  120. color: #FDB242;
  121. line-height: 55rpx;
  122. margin-top: 34rpx;
  123. }
  124. .an {
  125. width: 690rpx;
  126. height: 80rpx;
  127. background: #FDB242 ;
  128. border-radius: 40rpx;
  129. margin-left: 30rpx;
  130. margin-top: 62rpx;
  131. }
  132. .qr {
  133. height: 28rpx;
  134. font-size: 30rpx;
  135. font-family: PingFang SC;
  136. font-weight: 500;
  137. color: #0D0A21;
  138. line-height: 55rpx;
  139. margin-left: 316rpx;
  140. padding-top: 16rpx;
  141. }
  142. </style>