index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link href="/logo.png" rel="icon" />
  6. <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  7. <meta
  8. content="Vue3 + Vite5 + TypeScript5 + Element-Plus 的后台管理模板,配套接口文档和后端源码,vue-element-admin 的 Vue3 版本"
  9. name="description"
  10. />
  11. <meta
  12. content="vue,element-plus,typescript,vue-element-admin,vue3-element-admin"
  13. name="keywords"
  14. />
  15. <script src="/sortable.js"></script>
  16. <title>生产线综合管控采集平台</title>
  17. <link rel="stylesheet" href="/LuckExcel/pluginsCss.css" />
  18. <link rel="stylesheet" href="/LuckExcel/plugins.css" />
  19. <link rel="stylesheet" href="/LuckExcel/luckysheet.css" />
  20. <link rel="stylesheet" href="/LuckExcel/iconfont.css" />
  21. <script src="/LuckExcel/plugin.js"></script>
  22. <script src="/LuckExcel/luckysheet.umd.js"></script>
  23. </head>
  24. <body>
  25. <div id="app">
  26. <div class="loader"></div>
  27. </div>
  28. </body>
  29. <script src="/src/main.ts" type="module"></script>
  30. <style>
  31. html,
  32. body,
  33. #app {
  34. position: relative;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. width: 100%;
  39. height: 100%;
  40. }
  41. /* 甘特图样式控制 */
  42. .gantt_task_line {
  43. border-radius: 20px !important;
  44. border: 0px solid black;
  45. }
  46. .gantt_tooltip {
  47. font-size: 15px;
  48. font-weight: 300;
  49. }
  50. .gantt_tree_content {
  51. font-size: 15px !important;
  52. }
  53. .gantt_grid_data {
  54. background-color: rgba(0, 0, 0, 0.1);
  55. .gantt_row_task {
  56. background-color: rgba(0, 0, 0, 0.1) !important;
  57. }
  58. .odd {
  59. background-color: rgba(0, 0, 0, 0.2) !important;
  60. }
  61. .gantt_row:hover {
  62. background-color: rgba(0, 0, 0, 0.4) !important;
  63. }
  64. .gantt_selected {
  65. background-color: rgb(123, 123, 123) !important;
  66. }
  67. }
  68. .gantt_task {
  69. .gantt_selected {
  70. background-color: rgb(123, 123, 123);
  71. .gantt_task_cell {
  72. border-color: white;
  73. }
  74. }
  75. }
  76. .gantt_data_area {
  77. background-color: rgba(0, 0, 0, 0.1);
  78. .gantt_task_cell {
  79. background-color: rgba(0, 0, 0, 0.1);
  80. border-color: white;
  81. }
  82. }
  83. .year {
  84. background: #ffcc00;
  85. color: #fff !important;
  86. font-size: 16px;
  87. }
  88. .month {
  89. background: #66ccff;
  90. color: #fff !important;
  91. font-size: 16px;
  92. }
  93. .day {
  94. background: #abe4ff;
  95. color: #fff !important;
  96. font-size: 16px;
  97. }
  98. .hour {
  99. background: #0bb051;
  100. color: #fff !important;
  101. font-size: 16px;
  102. }
  103. .gantt_grid_head_cell {
  104. font-size: 16px;
  105. color: white !important;
  106. font-weight: 600;
  107. border: 1px solid rgb(206, 206, 206);
  108. background-color: rgb(48, 65, 86, 0.6);
  109. }
  110. /* 滚动条样式 */
  111. ::-webkit-scrollbar {
  112. width: 6px !important; /* 设置滚动条的宽度 */
  113. }
  114. ::-webkit-scrollbar-track {
  115. background-color: #f0f2f5; /* 滚动条轨道的背景色 */
  116. }
  117. ::-webkit-scrollbar-thumb {
  118. background-color: #90939960; /* 滚动条的颜色 */
  119. border-radius: 8px !important; /* 滚动条的圆角 */
  120. }
  121. ::-webkit-scrollbar-thumb:hover {
  122. background-color: #5a5e66; /* 滚动条hover时的颜色 */
  123. }
  124. @keyframes l19 {
  125. 100% {
  126. transform: rotate(360deg);
  127. }
  128. }
  129. </style>
  130. </html>