Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 731 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 731 Bytes

leasy-admin

经过过度封装的后台模版,适合那些前端技术不好的后端开发人员, 可以让他们快速开发出一个完整的后台管理系统,同时页面也不太难看。

使用 vite5 需要 node20版本

安装依赖

pnpm i

todo

  • 整体布局
  • request封装
  • [x ] 登陆页
  • 我的
  • 我的详情
  • ProTable
  • ProForm
  • 根据json,生成页面
  • 腾讯地图
  • 高德地图
  • 百度地图

部署

# nginx 部署配置,不然会404

location / {
  try_files $uri $uri/ /index.html;
}

# 非根目录 例如放在 html下面的 leasy-admin 目录下面
location /leasy-admin {
  try_files $uri $uri/ /leasy-admin/index.html;
}