index.vue 689 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="content">
  3. {{message}}
  4. <navigator url="/pages/park/map_search"><button type="default">地图查找</button></navigator>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. message:'找园区'
  12. }
  13. },
  14. onLoad() {
  15. },
  16. methods: {
  17. }
  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>