36 lines
782 B
HTML
36 lines
782 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="base-theme">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%= title %></title>
|
|
<style>
|
|
.app-navs-frame {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
height: 50px;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#app-navs > * {
|
|
margin: 0 12px;
|
|
}
|
|
#app-navs .el-form-item{
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<div class="app-navs-frame">
|
|
<div id="app-navs"></div>
|
|
<div id="app-navs-system"></div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|