-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
.DS_Store | ||
dist* | ||
dist-ssr | ||
*.local | ||
src/config/server.ts |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
# walk-view-2023 | ||
2023代的精弘毅行 重构自 2021 版 walk-view | ||
# walk-view 精弘毅行 2023 报名系统 · 前端 | ||
|
||
精弘网络在 2023 年重启第 14 届毅行,在 [肖哥](https://github.com/lixiao189) 21 年重构的基础上,由 [Tiancy](https://github.com/Tianci-King) 和 [Patrickill](https://github.com/Patrickill) 基于 扫码和海报 这两个业务模块进行了新一次的重构,并配套搭建了管理员小程序端用于点位签到打卡 | ||
|
||
--- | ||
|
||
精弘网络在 2021 年决定尝试优化一下精弘毅行报名系统的性能,对原来的项目进行了重构 | ||
|
||
|
||
|
||
## 相关技术 | ||
|
||
**第三方库:** | ||
|
||
- Vue | ||
|
||
- Vue-router | ||
|
||
- Naive UI | ||
|
||
- axios | ||
|
||
- qrcode-vue | ||
|
||
**前端构建工具:** | ||
|
||
- yarn 包管理器 | ||
- Node.JS 运行环境 | ||
- Vite 构建工具 | ||
|
||
|
||
|
||
## 如何开始 | ||
|
||
> **配置`/walk-view/src/config/Server.ts`** | ||
**本地运行测试** | ||
|
||
```bash | ||
yarn dev | ||
``` | ||
|
||
**编译 realease 版本** | ||
|
||
```bash | ||
yarn build | ||
``` | ||
|
||
**预览编译结果** | ||
|
||
```bash | ||
yarn serve | ||
``` | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>精弘毅行报名系统</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |