HomeView.vue 558 B

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