login.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <view class="page-wrap">
  3. <view class="title-row">手机号登录</view>
  4. <view class="input-row">
  5. <input placeholder-style="color: #ABABAB" class="input" type="number" placeholder="手机号" maxlength="11" />
  6. </view>
  7. <view class="input-row code-row">
  8. <input placeholder-style="color: #ABABAB" class="input" type="number" placeholder="验证码" maxlength="6" />
  9. <button class="btn">获取验证码</button>
  10. </view>
  11. <view class="tips-row">您的手机号将做为登录账号使用并仅用于接收验证码,我们不会在任何地方泄露。</view>
  12. <button class="login-btn">登 录</button>
  13. <view class="agreement-row">
  14. <checkbox checked style="transform:scale(0.6)"/>
  15. 同意我们的
  16. <text class="link">用户协议</text>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {};
  24. },
  25. methods: {}
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. .page-wrap {
  30. min-height: 100%;
  31. box-sizing: border-box;
  32. background: #fff;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. padding: 109.89rpx;
  37. box-sizing: border-box;
  38. .title-row {
  39. font-size: 38.46rpx;
  40. color: #00bcd2;
  41. margin-bottom: 41.21rpx;
  42. }
  43. .input-row {
  44. width: 523.35rpx;
  45. height: 68.68rpx;
  46. font-size: 24.73rpx;
  47. border-bottom: 1rpx solid #ababab;
  48. box-sizing: border-box;
  49. display: flex;
  50. margin-bottom: 27.47rpx;
  51. .input {
  52. width: 100%;
  53. height: 100%;
  54. padding: 0 27.47rpx;
  55. box-sizing: border-box;
  56. }
  57. &.code-row {
  58. .input {
  59. width: 370.88rpx;
  60. }
  61. }
  62. .btn {
  63. font-size: 24.73rpx;
  64. color: #f97631;
  65. background: no-repeat;
  66. padding: 0;
  67. height: 100%;
  68. line-height: 65.93rpx;
  69. }
  70. }
  71. .tips-row {
  72. font-size: 24.73rpx;
  73. color: #999;
  74. line-height: 38.46rpx;
  75. padding: 0 27.47rpx;
  76. }
  77. .login-btn {
  78. width: 521.98rpx;
  79. height: 75.55rpx;
  80. line-height: 75.55rpx;
  81. background: #f97631;
  82. border-radius: 8.24rpx;
  83. font-size: 30.22rpx;
  84. color: #fff;
  85. margin: 82.42rpx auto 0;
  86. }
  87. .agreement-row{
  88. font-size: 24.73rpx;
  89. display: flex;
  90. align-items: center;
  91. color: #999;
  92. margin-top: 27.47rpx;
  93. .link{
  94. color: #0384D6;
  95. margin-left: 8.24rpx;
  96. }
  97. }
  98. }
  99. </style>