Skip to content

Commit 3d42d2e

Browse files
committed
用户列表已完成
1 parent a9a0e79 commit 3d42d2e

25 files changed

+1177
-691
lines changed

package-lock.json

Lines changed: 113 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
"axios": "^0.21.4",
1212
"core-js": "^3.6.5",
1313
"element-ui": "^2.15.6",
14+
"less": "^4.1.1",
15+
"less-loader": "^10.0.1",
1416
"vue": "^2.6.11",
1517
"vue-router": "^3.0.7"
1618
},

public/index.html

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
<!DOCTYPE html>
22
<html lang="">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8-
<title><%= htmlWebpackPlugin.options.title %></title>
9-
</head>
10-
<body>
11-
<noscript>
12-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13-
</noscript>
14-
<div id="app"></div>
15-
<!-- built files will be auto injected -->
16-
</body>
17-
</html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<!-- <meta name="referrer" content="origin"> -->
8+
<!-- <meta name="referrer" content="no-referrer|no-referrer-when-downgrade|origin|origin-when-crossorigin|unsafe-url"> -->
9+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
10+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
11+
<title>
12+
<%= htmlWebpackPlugin.options.title %>
13+
</title>
14+
</head>
15+
16+
<body>
17+
<!-- <a href="http://example.com" rel="noreferrer"></a> -->
18+
<noscript>
19+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
20+
Please enable it to continue.</strong>
21+
</noscript>
22+
<div id="app"></div>
23+
<!-- built files will be auto injected -->
24+
</body>
25+
26+
</html>

src/assets/css/global.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,16 @@ html,body,#app {
33
height: 100%;
44
margin: 0;
55
padding: 0;
6+
}
7+
8+
.el-breadcrumb {
9+
margin-bottom: 15px;
10+
}
11+
12+
.el-card {
13+
box-shadow: 0 1px 1px rgba(0, 0, 0, .15)!important;
14+
}
15+
16+
.el-table {
17+
margin-top: 15px;
618
}

0 commit comments

Comments
 (0)