-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat: 🌐 优化了加载页面的HTML结构和样式,并引入了
bootstrap
和bootstrap-icons
库
- Loading branch information
Showing
6 changed files
with
114 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<html lang="zh"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Web</title> | ||
<meta content="width=device-width, initial-scale=1, viewport-fit=cover" name="viewport"/> | ||
<meta content="ie=edge" http-equiv="X-UA-Compatible"/> | ||
<title>Loading page ....</title> | ||
<base href="/"> | ||
<meta content="width=device-width, initial-scale=1" name="viewport"> | ||
<link href="favicon.ico" rel="icon" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
<app-root> | ||
<div class="d-flex justify-content-center align-items-center h-100 bg-success"> | ||
<div class="d-block text-center"> | ||
<div class="spinner-border text-warning" role="status" style="width: 5rem; height: 5rem;"> | ||
<span class="visually-hidden">Loading...</span> | ||
</div> | ||
<span class="d-flex align-self-center" role="status" style="font-size: 3rem;">Loading...</span> | ||
</div> | ||
</div> | ||
</app-root> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"/api": { | ||
"target": "http://localhost:8080", | ||
"secure": false, | ||
"pathRewrite": { | ||
"^/api": "" | ||
}, | ||
"changeOrigin": true, | ||
"logLevel": "debug" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1, viewport-fit=cover" name="viewport" /> | ||
<meta content="ie=edge" http-equiv="X-UA-Compatible" /> | ||
<meta content="width=device-width, initial-scale=1, viewport-fit=cover" name="viewport"/> | ||
<meta content="ie=edge" http-equiv="X-UA-Compatible"/> | ||
<title>Loading page ....</title> | ||
<base href="/"> | ||
<link href="favicon.ico" rel="icon" type="image/x-icon" /> | ||
<link href="favicon.ico" rel="icon" type="image/x-icon"/> | ||
</head> | ||
<body> | ||
<app-root><div class="d-flex justify-content-center align-items-center h-100 bg-success"> | ||
<app-root> | ||
<div class="d-flex justify-content-center align-items-center h-100 bg-success"> | ||
<div class="d-block text-center"> | ||
<div class="spinner-border text-warning" role="status" style="width: 5rem; height: 5rem;"> | ||
<span class="visually-hidden">Loading...</span> | ||
</div> | ||
<span class="d-flex align-self-center" role="status" style="font-size: 3rem;">Loading...</span> | ||
</div> | ||
</div></app-root> | ||
</div> | ||
</app-root> | ||
</body> | ||
</html> | ||
</html> |