1234567891011121314151617181920212223242526272829303132 |
- <template>
- <iframe class="home-wrapper" src="https://27.156.118.74:19901/statistics/index.html?type=1" ></iframe>
- </template>
- <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>
|