学生档案管理系统

This commit is contained in:
2022-03-04 17:44:26 +08:00
commit afe18b80bb
57 changed files with 28291 additions and 0 deletions

9
public/dist/animate.min.css vendored Normal file

File diff suppressed because one or more lines are too long

33
public/dist/global/global.css vendored Normal file
View File

@ -0,0 +1,33 @@
@charset "utf-8";
/*全局的css文件*/
html,body,#app{width:100%;height:100%}
body{margin:0px;padding:0px;}
/*重置样式*/
*{margin:0;padding:0;}
a,u{text-decoration: none;color:#000;}
i,em{font-style: normal;}
b,strong{font-weight: normal;}
h1,h2,h3,h3,h4,h5,h6{font-weight: normal;font-size: 16px;}
ul,ol,li{list-style: none;font-size: 16px;}
input{outline: none;}
img{border:0;display: block;}
/*滚动条相关的样式*/
*::-webkit-scrollbar-track-piece {
background-color: #f8f8f8;
}
*::-webkit-scrollbar {
width: 8px;
height: 9px;
}
*::-webkit-scrollbar-thumb {
background-color: #ccc;
background-clip: padding-box;
border-radius: 5px;
min-height: 28px;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #bbb;
}

4
public/dist/theme/theme-primary.css vendored Normal file
View File

@ -0,0 +1,4 @@
/*主题样式文件*/
.body {
background: blue;
}

7
public/dist/theme/theme-primary.less vendored Normal file
View File

@ -0,0 +1,7 @@
/*主题样式文件*/
@theme-color:blue;
@theme-btn-primary:blue;
.body{
background: blue;
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

BIN
public/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

21
public/index.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<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">
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<!-- 全局样式文件 -->
<link rel="stylesheet" type="text/css" href="dist/global/global.css"/>
<!-- 导入皮肤文件 -->
<!-- <link id="theme-css" rel="stylesheet" type="text/css" href="dist/theme/theme-primary.css"/> -->
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>