请务必按照本文档部署运行章节 进行操作,减少踩坑弯路
前后端版本必须保持一致
① 检查node版本
# 检查node版本 = 16
node -v
# 若高版本node 可执行n 命令切换至 16 版本
n 16.17.1
② 下载前端代码
git clone https://gitee.com/log4j/pig-ui.git
③ 安装依赖
npm install --registry=https://registry.npmmirror.com
④ 启动
npm run dev
⑤ 访问前端
:::info
浏览器访问: http://localhost:8080
默认用户名: admin
默认密码: 123456
:::
特别说明
:::warning
- npm install 过程中可能由于网络关系等,提示报错,请删除
- pig-ui 根目录中 node_modules 重新执行 cnpm install 命令即可
- 注意node 版本不要太高, 16 是个不错的版本选择 :::