index.vue 860 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <!-- <view class="content"> -->
  3. <!-- <image class="logo" src="/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">{{title}}</text>
  6. </view> -->
  7. <!-- </view> -->
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. // title: 'Hello'
  14. }
  15. },
  16. onLoad() {
  17. // 关闭当前页面,跳转到应用内的某个页面。
  18. uni.redirectTo({
  19. url: "/pages/logIn/login",
  20. });
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style>
  27. /* .content {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. } */
  33. /* .logo {
  34. height: 200rpx;
  35. width: 200rpx;
  36. margin-top: 200rpx;
  37. margin-left: auto;
  38. margin-right: auto;
  39. margin-bottom: 50rpx;
  40. }
  41. .text-area {
  42. display: flex;
  43. justify-content: center;
  44. }
  45. .title {
  46. font-size: 36rpx;
  47. color: #8f8f94;
  48. } */
  49. </style>