index.vue 777 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/agrcloud-images/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">
  6. {{ title }}
  7. </text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. title: 'AgrCloud-center'
  16. }
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. .content {
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. justify-content: center;
  30. padding: 40rpx;
  31. }
  32. .logo {
  33. height: 200rpx;
  34. width: 200rpx;
  35. margin-top: 100rpx;
  36. margin-left: auto;
  37. margin-right: auto;
  38. margin-bottom: 50rpx;
  39. }
  40. .text-area {
  41. display: flex;
  42. justify-content: center;
  43. }
  44. .title {
  45. font-size: 28rpx;
  46. color: $u-content-color;
  47. }
  48. </style>