login.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="login">
  3. <statusBar :item='navBarData'></statusBar>
  4. <view class="img">
  5. <image src="../../static/logo.png" mode="aspectFill"></image>
  6. </view>
  7. <view class="mid">
  8. <!-- <view class="quan"></view> -->
  9. <radio value="r1" @click="radioCheck" size="10" :checked="isOK" />
  10. <view class="">
  11. 我已阅读并同意<text>《教育小程序服务条款》</text>和 <text>《 隐私协议》</text>新用户自动注册
  12. </view>
  13. </view>
  14. <button class="btn">一键登录</button>
  15. <view class="footer" @click="goto">
  16. <text>手机号登录/账号密码登录</text>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. isOK:false,
  25. navBarData:{
  26. title:'首页',
  27. btn:1 //判断是否显示返回按钮
  28. },
  29. };
  30. },
  31. methods:{
  32. goto(){
  33. uni.navigateTo({
  34. url:"/pages/login_two/login_two"
  35. })
  36. },
  37. radioCheck(){
  38. this.isOK=!this.isOK
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. .login{
  45. background-color: #ffffff;
  46. height: 100vh;
  47. .img{
  48. // margin-top: 150rpx;
  49. // background-color: #ccc;
  50. padding: 150rpx 0;
  51. width: 750rpx;
  52. display: flex;
  53. justify-content: center;
  54. image{
  55. width: 200rpx;
  56. height: 200rpx;
  57. border-radius: 50%;
  58. }
  59. }
  60. .mid{
  61. display: flex;
  62. justify-content: flex-start;
  63. width: 750rpx;
  64. padding: 0rpx 20rpx;
  65. font-size: 13px;
  66. ::v-deep uni-radio .uni-radio-input{
  67. width: 10rpx;
  68. height: 10rpx;
  69. }
  70. text{
  71. color: #4a97f2;
  72. }
  73. }
  74. .btn{
  75. background-color: #0056a8;
  76. color: #ffffff;
  77. border-radius: 30px;
  78. margin: 30rpx 55rpx;
  79. // padding: 0rpx 10rpx;
  80. font-size: 16px;
  81. }
  82. .footer{
  83. display: flex;
  84. justify-content: center;
  85. font-size: 14px;
  86. margin: auto;
  87. color: #666666;
  88. }
  89. }
  90. </style>