You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
431 B

10 months ago
  1. <template>
  2. <view>
  3. <view class="text-area">
  4. <text class="title">{{'详情页面'}}</text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style>
  19. .text-area {
  20. display: flex;
  21. justify-content: center;
  22. flex-direction: column;
  23. margin-top: 30px;
  24. }
  25. .title {
  26. font-size: 36rpx;
  27. color: #8f8f94;
  28. text-align: center;
  29. }
  30. </style>