realtimeWatch.vue 512 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="realtimeWatch-container">
  3. <realMap></realMap>
  4. </view>
  5. </template>
  6. <script>
  7. // #ifdef H5
  8. import realMap from "./module/h5Map";
  9. // #endif
  10. /* 非h5未实现 */
  11. // #ifndef H5
  12. import realMap from "./module/appMap";
  13. // #endif
  14. export default {
  15. components: {
  16. realMap
  17. },
  18. data() {
  19. return {
  20. }
  21. },
  22. onLoad() {
  23. },
  24. onShow() {
  25. },
  26. onHide() {
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .realtimeWatch-container {
  34. width: 100%;
  35. height: 100vh;
  36. }
  37. </style>