1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.png">
- <title>智能散酒销售系统</title>
- <style>
- html, body {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- #app {
- overflow: hidden;
- user-select: none;
- width: 100%;
- height: 100%;
- }
- * {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- </style>
- </head>
- <body>
- <div id="app"></div>
- </body>
- </html>
|