1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <iframe :src="`https://27.156.118.74:19901/statistics/index.html?type=${appStore.ownApp}`"
- class="home-wrapper"></iframe>
- </template>
- <script setup>
- import {useAppStore} from "@/stores/app";
- const appStore = useAppStore();
- </script>
- <style lang="scss" scoped>
- .home-wrapper {
- width: 100%;
- height: 100%;
- border: none;
- }
- .container {
- padding: 20px;
- overflow-y: auto;
- }
- .card {
- background-color: #f9f9f9;
- border: 1px solid #ddd;
- border-radius: 5px;
- padding: 20px;
- margin-bottom: 20px;
- }
- .btn {
- display: inline-block;
- background-color: #007BFF;
- color: white;
- padding: 10px 20px;
- text-decoration: none;
- border-radius: 5px;
- }
- </style>
|