# admin-example **Repository Path**: awko/admin-example ## Basic Information - **Project Name**: admin-example - **Description**: admin-example - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-12-08 - **Last Updated**: 2023-04-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # admin-example admin框架测试示例项目 ## 目录结构 ├── business // 所有服务端业务函数都放里面,处理 admin 分组,还可以自定义 │ ├── group.json // 各个分组的展示名映射关系 │ └── admin // 超级管理员功能目录,处理其他管理员生杀大权的逻辑 ├── common │ ├── bind.js // 自定义 业务函数 对象的 this │ └── util.js // 全局 util 自定义 ├── component // 这是前端组件,有预设组件,也可以自定义 │ ├── AkButton.js │ ├── AkEditor │ │ ├── index.js │ │ └── index.less │ ├── AkForm │ │ ├── index.js │ │ └── index.less │ ├── AkInput │ │ ├── index.js │ │ └── index.less ├ ├── Login // 自定义登陆界面(只需要构造一个Login组件来实现 │ │ ├── index.js │ │ └── index.less │ ├── AkTable.js │ └── Img.js ├── config // 配置目录 │ ├── config.default.js │ ├── config.development.js │ └── config.production.js ├── index.js // 如果不用npm start 可以 使用 node index.js ├── package-lock.json ├── package.json ├── res // 前端资源数据 │ ├── config.json // 页面配置 │ ├── i18n // 国际化配置 │ │ ├── en-US.json │ │ ├── name.json // 各个语言对应名 │ │ └── zh-CN.json │ └── static // 静态资源可以放在这里 │ └── logo.png // logo 替换即可 └── www // build 过后的前端包 ├── index.css ├── index.html ├── main.css ├── main.js ├── vendors.js └── vendors1.css