index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div class="gasReportInspect">
  3. <customHeader>报表管理中心</customHeader>
  4. <div class="content">
  5. <component :is="currentComponent"></component>
  6. </div>
  7. </div>1
  8. </template>
  9. <script setup lang="ts">
  10. import { ref, reactive, onMounted } from 'vue';
  11. import { useGlobSetting } from '/@/hooks/setting';
  12. import indexTime from './index-time.vue'
  13. import indexType from './index-type.vue'
  14. import indexLt from './index-lt.vue'
  15. import customHeader from '/@/components/vent/customHeader.vue';
  16. let currentComponent = ref<any>('')//当前加载组件
  17. let getInit = () => {
  18. const { sysOrgCode } = useGlobSetting();
  19. switch (sysOrgCode) {
  20. case 'sdmtjtbetmk'://布尔台
  21. currentComponent.value = indexType
  22. break;
  23. case 'sdmtjtltmk'://柳塔
  24. currentComponent.value = indexLt
  25. break;
  26. default:
  27. currentComponent.value = indexTime
  28. }
  29. }
  30. onMounted(() => {
  31. getInit()
  32. })
  33. </script>
  34. <style lang="less" scoped>
  35. .gasReportInspect {
  36. width: 100%;
  37. height: 100%;
  38. padding: 80px 10px 15px 10px;
  39. box-sizing: border-box;
  40. position: relative;
  41. .content {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. }
  46. </style>