index.vue 941 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. AgrCloud-index
  7. </text>
  8. </view>
  9. <view class="button-demo">
  10. <u-button :ripple="true">按钮演示</u-button>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. title: 'Hello'
  19. }
  20. },
  21. onLoad() {
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .content {
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. justify-content: center;
  33. padding: 40rpx;
  34. }
  35. .logo {
  36. height: 200rpx;
  37. width: 200rpx;
  38. margin-top: 100rpx;
  39. margin-left: auto;
  40. margin-right: auto;
  41. margin-bottom: 50rpx;
  42. }
  43. .text-area {
  44. display: flex;
  45. justify-content: center;
  46. }
  47. .title {
  48. font-size: 28rpx;
  49. color: $u-content-color;
  50. }
  51. .button-demo {
  52. margin-top: 80rpx;
  53. }
  54. .link-demo {
  55. margin-top: 80rpx;
  56. }
  57. </style>