12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" href="/logo.png" />
- <meta content="width=device-width, initial-scale=1.0" name="viewport" />
- <meta
- content="Vue3 + Vite5 + TypeScript5 + Element-Plus 的后台管理模板,配套接口文档和后端源码,vue-element-admin 的 Vue3 版本"
- name="description"
- />
- <meta
- content="vue,element-plus,typescript,vue-element-admin,vue3-element-admin"
- name="keywords"
- />
- <title>维修状态数据管控系统-一体机</title>
- <link rel="stylesheet" href="/LuckExcel/pluginsCss.css" />
- <link rel="stylesheet" href="/LuckExcel/plugins.css" />
- <link rel="stylesheet" href="/LuckExcel/luckysheet.css" />
- <link rel="stylesheet" href="/LuckExcel/iconfont.css" />
- <script src="/LuckExcel/plugin.js"></script>
- <script src="/LuckExcel/luckysheet.umd.js"></script>
- </head>
- <body>
- <div id="app"></div>
- </body>
- <script src="/src/main.ts" type="module"></script>
- <style>
- html,
- body,
- #app {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- }
- .loader {
- position: relative;
- width: 40px;
- aspect-ratio: 0.577;
- overflow: hidden;
- clip-path: polygon(0 0, 100% 100%, 0 100%, 100% 0);
- animation: l19 2s infinite linear;
- }
- .loader::before {
- position: absolute;
- inset: -150%;
- content: "";
- background: repeating-conic-gradient(
- from 30deg,
- #ffabab 0 60deg,
- #abe4ff 0 120deg,
- #ff7373 0 180deg
- );
- animation: inherit;
- animation-direction: reverse;
- }
- @keyframes l19 {
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- </html>
|