systemSet.vue 790 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="content">
  3. <view class="uni-flex uni-column">
  4. <view class="flex-item flex-item-V uni-bg-red">A</view>
  5. <view class="flex-item flex-item-V uni-bg-green">B</view>
  6. <view class="flex-item flex-item-V uni-bg-blue">C</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: 'Hello'
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. .content {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. justify-content: center;
  29. }
  30. .logo {
  31. height: 200rpx;
  32. width: 200rpx;
  33. margin-top: 200rpx;
  34. margin-left: auto;
  35. margin-right: auto;
  36. margin-bottom: 50rpx;
  37. }
  38. .text-area {
  39. display: flex;
  40. justify-content: center;
  41. }
  42. .title {
  43. font-size: 36rpx;
  44. color: #8f8f94;
  45. }
  46. </style>