HomeView.vue 688 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <iframe :src="`https://27.156.118.74:19901/statistics/index.html?type=${appStore.ownApp}`"
  3. class="home-wrapper"></iframe>
  4. </template>
  5. <script setup>
  6. import {useAppStore} from "@/stores/app";
  7. const appStore = useAppStore();
  8. </script>
  9. <style lang="scss" scoped>
  10. .home-wrapper {
  11. width: 100%;
  12. height: 100%;
  13. border: none;
  14. }
  15. .container {
  16. padding: 20px;
  17. overflow-y: auto;
  18. }
  19. .card {
  20. background-color: #f9f9f9;
  21. border: 1px solid #ddd;
  22. border-radius: 5px;
  23. padding: 20px;
  24. margin-bottom: 20px;
  25. }
  26. .btn {
  27. display: inline-block;
  28. background-color: #007BFF;
  29. color: white;
  30. padding: 10px 20px;
  31. text-decoration: none;
  32. border-radius: 5px;
  33. }
  34. </style>