index.vue 720 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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: '快与慢运营看板小程序',
  14. }
  15. },
  16. onLoad() {},
  17. methods: {},
  18. }
  19. </script>
  20. <style>
  21. .content {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .logo {
  28. height: 200rpx;
  29. width: 200rpx;
  30. margin-top: 200rpx;
  31. margin-left: auto;
  32. margin-right: auto;
  33. margin-bottom: 50rpx;
  34. }
  35. .text-area {
  36. display: flex;
  37. justify-content: center;
  38. }
  39. .title {
  40. font-size: 36rpx;
  41. color: #8f8f94;
  42. }
  43. </style>