Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wenhaogege66/software-engineering
Browse files Browse the repository at this point in the history
  • Loading branch information
LeChatelier-Lenz committed Jun 10, 2024
2 parents bdbc06e + 9e4fd53 commit 898ae7f
Show file tree
Hide file tree
Showing 40 changed files with 3,143 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
后端框架搞好了,里面还有个例子,快干活
# Vue 3 + Vite

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

## Recommended IDE Setup

- [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>在线银行系统登录</title>
</head>
<body>
<div id="app"></div>
这是总页面
<script type="module" src="./src/login/login_main.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions online_manager.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>互联网个人权限管理员</title>
</head>
<body>
<div id="app"></div>

<script type="module" src="/src/online_user_administrator/online_user_administrator_main.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions online_user.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>互联网个人银行</title>
</head>
<body>
<div id="app"></div>

<script type="module" src="/src/online_user/online_user_main.js"></script>
</body>
</html>
Loading

0 comments on commit 898ae7f

Please sign in to comment.