index.vue 666 B

123456789101112131415161718192021222324252627
  1. <script setup lang="ts">
  2. import { shallowRef, onMounted } from "vue";
  3. import All from "./components/all.vue";
  4. import Business from "./components/business.vue";
  5. import { usePermission } from "/@/hooks/core";
  6. import NoAuth from "/@/components/NoAuth/NoAuth.vue";
  7. const pageName = "supplierBusinessAnalysis"
  8. const actived = shallowRef("");
  9. const { hasPermissionWithCode } = usePermission(pageName);
  10. </script>
  11. <template>
  12. <div class="report-container">
  13. <business />
  14. </div>
  15. </template>
  16. <style scoped lang="scss">
  17. .report-container {
  18. height: calc(100vh - 48px);
  19. :deep(.el-tabs__header) {
  20. background-color: #fff;
  21. padding: 10px 10px 0;
  22. }
  23. }
  24. </style>