index.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!--
  2. * @Description:
  3. * @Author: wangcc
  4. * @Date: 2023-01-09 11:18:33
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2023-02-17 15:58:54
  7. * @FilePath: \parking_LargeScreen\src\views\screenIndex\index.vue
  8. * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div>
  12. <v-scale-screen>
  13. <map-view></map-view>
  14. <top-nav @tabCheck="tabCheck"></top-nav>
  15. <tab-label v-if="tabType == 1"></tab-label>
  16. <Receivables v-if="tabType == 1"></Receivables>
  17. <ranking v-if="tabType == 1"></ranking>
  18. <percen-tage ref="PercenTage" v-if="tabType == 1"></percen-tage>
  19. <analyse ref="analyse" v-if="tabType == 1"></analyse>
  20. <Parking-rate v-if="tabType != 1"></Parking-rate>
  21. </v-scale-screen>
  22. </div>
  23. </template>
  24. <script>
  25. import mapView from '@/components/map.vue';
  26. import topNav from '@/components/topNav.vue';
  27. import tabLabel from '@/components/selectLabel.vue';
  28. import Receivables from '@/components/Receivables/Receivables.vue';
  29. import ranking from '@/components/Receivables/ranking.vue';
  30. import PercenTage from '@/components/Receivables/PercenTage.vue';
  31. import analyse from '@/components/Receivables/analyse';
  32. import ParkingRate from '@/components/ParkingRate/index.vue'
  33. export default {
  34. name: '',
  35. components: {
  36. mapView,
  37. topNav,
  38. tabLabel,
  39. Receivables,
  40. ranking,
  41. PercenTage,
  42. analyse,
  43. ParkingRate
  44. },
  45. data() {
  46. return {
  47. tabType: '1',
  48. tabValue:''
  49. };
  50. },
  51. created() {
  52. },
  53. mounted() {},
  54. watch: {},
  55. methods: {
  56. tabCheck(item) {
  57. console.log(item);
  58. this.tabType = item.id;
  59. if (item.id !=1) {
  60. this.$refs.PercenTage.clearTime();
  61. this.$refs.analyse.clearTime();
  62. }else {
  63. this.tabValue = '1'
  64. }
  65. },
  66. }
  67. };
  68. </script>
  69. <style lang='scss' scoped>
  70. </style>