index.vue 634 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="login">
  3. 登录页
  4. <view class="logIn" @click="logIn">
  5. 登录
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. components: {
  12. },
  13. data() {
  14. return {
  15. }
  16. },
  17. mounted() {
  18. },
  19. methods: {
  20. logIn() {
  21. uni.redirectTo({
  22. url: '/pages/index/index'
  23. })
  24. },
  25. },
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .login {
  30. width: 100%;
  31. min-height: 100vh;
  32. background: #fff;
  33. .logIn {
  34. width: 50%;
  35. height: 40px;
  36. text-align: center;
  37. margin: 0 auto;
  38. line-height: 40px;
  39. }
  40. }
  41. </style>