mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
修改描述文件
This commit is contained in:
36
README.en.md
36
README.en.md
@@ -1,36 +0,0 @@
|
||||
# ulthon_admin
|
||||
|
||||
#### Description
|
||||
基于thinkphp6的系统后台管理系统,仅实现最简单的功能.
|
||||
|
||||
#### Software Architecture
|
||||
Software architecture description
|
||||
|
||||
#### Installation
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Instructions
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Contribution
|
||||
|
||||
1. Fork the repository
|
||||
2. Create Feat_xxx branch
|
||||
3. Commit your code
|
||||
4. Create Pull Request
|
||||
|
||||
|
||||
#### Gitee Feature
|
||||
|
||||
1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md
|
||||
2. Gitee blog [blog.gitee.com](https://blog.gitee.com)
|
||||
3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore)
|
||||
4. The most valuable open source project [GVP](https://gitee.com/gvp)
|
||||
5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help)
|
||||
6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
||||
49
README.md
49
README.md
@@ -1,14 +1,57 @@
|
||||
# ulthon_admin
|
||||
## 奥宏后台管理小模板
|
||||
|
||||
#### 介绍
|
||||
基于thinkphp6的系统后台管理系统,仅实现通用的基本的功能.
|
||||
|
||||
本项目的定位是实现几个基本的功能,节约您的一些开发时间,没有过多的开发限制.
|
||||
|
||||
比如每个后台都要有账号的登录/编辑,这种小的功能,几乎每次做项目时都要做,花时间又没有什么成就感,您可以使用本模板,节省这部分时间.
|
||||
|
||||
类似的功能还有服务器信息/系统配置等.
|
||||
|
||||
#### 最新演示
|
||||
|
||||
[在线演示](http://ulthon_admin.ulthon.com)
|
||||
|
||||
账号: admin 密码: 123456
|
||||
|
||||
|
||||
#### 功能
|
||||
|
||||
- 服务器信息
|
||||
- 系统配置
|
||||
- 服务器信息(已完成)
|
||||
- 系统配置(已完成)
|
||||
- 管理员管理
|
||||
- 账户管理
|
||||
- 用户管理
|
||||
- 权限管理
|
||||
- 文件管理
|
||||
- 文件管理
|
||||
|
||||
|
||||
### 开发注意
|
||||
|
||||
#### 后台页面仅仅使用了`TP`的模板包含特性
|
||||
|
||||
|
||||
#### 支持所有(`TP6`支持的)类型数据库
|
||||
|
||||
填写正确的数据库连接配置,
|
||||
|
||||
执行`php think migrate:run`安装数据库
|
||||
|
||||
执行`php think seed:run`初始化数据
|
||||
|
||||
#### 使用了配置全局中间件
|
||||
|
||||
|
||||
在这个中间件里把数据库的配置信息设置到项目中.
|
||||
|
||||
中间件: `\app\\middleware\ConfigInit`
|
||||
|
||||
#### 文件上传
|
||||
|
||||
经过这个类上传的文件会保存到`public`下,
|
||||
|
||||
`TP`原本配置会保存到`public/storage`下,本项目修改了配置,直接保存到`public`下.
|
||||
|
||||
类:`\app\api\controller\Files::save()`
|
||||
@@ -10,5 +10,5 @@ return [
|
||||
// 页面Trace调试
|
||||
// \think\middleware\TraceDebug::class,
|
||||
|
||||
'\\app\\middleware\ConfigInit'
|
||||
'\app\\middleware\ConfigInit'
|
||||
];
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div class="layui-header">
|
||||
<div class="layui-logo">cwh5app</div>
|
||||
<div class="layui-logo">{:get_system_config('site_name')}</div>
|
||||
<!-- 头部区域(可配合layui已有的水平导航) -->
|
||||
<ul class="layui-nav layui-layout-left">
|
||||
<li class="layui-nav-item"><a href="{:url('admin/Index/index')}">首页</a></li>
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-form-label">网站名称</div>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" class="layui-input" readonly >
|
||||
<input type="text" class="layui-input" readonly value="{:get_system_config('site_name')}" >
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
|
||||
Reference in New Issue
Block a user