Compare commits

...

4 Commits

Author SHA1 Message Date
邹景立
cf7297ced6 Update readme.md 2022-03-06 16:51:45 +08:00
邹景立
a8fb5b0077 升级后台 admin 版本号 2022-03-06 11:10:23 +08:00
邹景立
2bb7f42c69 Update table.html 2022-03-06 10:33:48 +08:00
邹景立
501e98853c 优化后台样式 2022-03-06 10:33:30 +08:00
13 changed files with 33 additions and 14 deletions

View File

@ -0,0 +1,10 @@
* 升级 layui-2.7 版本并增加了 flex 样式,细节如下:
1. 增加 .flex 及相关样式 class。
2. 增加 .help-images 图片上传容器,支持单图或多图。
3. 增加 .help-checks 多项选择器容器,支持 raido,checkbox。
4. 修复 layui.form.checkbox 特殊情况下的异常。
5. 修改 ui 主布局的阴影生成方式,修改 NotSelect 使用。
6. 修改内容主容器(.think-page-body>.layui-body) 样式。
7. 其他细节调整见 _config.less 文件及 _layout.less 文件。。。。
8. 修改系统任务管理界面,简化数据统计及状态检测数据展示。
9. 优化 admin.js 加载 loding 显示,首次加载等待成功后再显示界面。

View File

@ -16,7 +16,7 @@
return [
'name' => 'admin',
'vers' => '2021.11.08.01',
'vers' => '2022.03.06.01',
'user' => '广州楚才信息科技有限公司',
'link' => 'https://www.cuci.cc',
'desc' => '系统管理模块,提供系统配置及应用模块管理。',

View File

@ -1,6 +1,6 @@
{
"name": "admin",
"author": "Anyon",
"version": "2021.06.17.01",
"version": "2022.03.06.01",
"content": "ThinkAdmin 系统基础模块"
}

View File

@ -1,4 +1,4 @@
<div class="layui-side notselect">
<div class="layui-side">
<a class="layui-side-target" data-target-menu-type></a>
<a class="layui-logo layui-elip" href="{:sysuri('@')}" title="{:sysconf('app_name')}">
<span class="headimg headimg-no headimg-xs" data-lazy-src="{:sysconf('site_icon')}"></span>

View File

@ -1,4 +1,4 @@
<div class="layui-header notselect">
<div class="layui-header">
<ul class="layui-nav layui-layout-left">
<li class="layui-nav-item" lay-unselect>
<a class="text-center" data-target-menu-type>

View File

@ -2,7 +2,7 @@
{block name='style'}{/block}
{block name='header'}
{notempty name='title'}
<div class="layui-card-header notselect">
<div class="layui-card-header">
<span class="layui-icon font-s10 color-desc margin-right-5">&#xe65b;</span>{$title|default=''}
<div class="pull-right">{block name='button'}{/block}</div>
</div>

View File

@ -1,7 +1,7 @@
<div class="layui-card">
{block name='style'}{/block}
{block name='header'}{notempty name='title'}
<div class="layui-card-header notselect">
<div class="layui-card-header">
<span class="layui-icon font-s10 color-desc margin-right-5">&#xe65b;</span>{$title|default=''}
<div class="pull-right">{block name='button'}{/block}</div>
</div>

View File

@ -115,6 +115,14 @@
-moz-osx-font-smoothing: grayscale;
}
// 禁止选中内容
#NotSelect() {
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none
}
// Flex 基础定位
#flex() {
display: -moz-box;

View File

@ -195,10 +195,7 @@
}
.notselect {
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none
#NotSelect();
}
.transition {

View File

@ -24,6 +24,7 @@
position: absolute;
box-sizing: content-box;
background: @TopHeaderBackColor !important;
#NotSelect();
> ul.layui-nav {
margin: 0;
@ -147,6 +148,7 @@
overflow: hidden;
box-shadow: @ShadowBodyLeft;
background-color: @LeftMainBackColor;
#NotSelect();
.layui-logo {
color: #FFF;
@ -356,6 +358,7 @@
left: @LayoutDefaLeftSzie;
border-top: @BoxBottomLine;
border-bottom: 1px solid #fff !important;
#NotSelect();
right: 0;
height: 45px;
@ -366,10 +369,10 @@
line-height: 45px;
& + .layui-card-line {
top: 46px;
top: 47px;
& + .layui-card-body {
top: 46px;
top: 47px;
}
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -79,6 +79,7 @@ ThinkAdmin 为 MIT 协议开源项目,安装使用或二次开发不受约束
* 执行 `build.cmd` 可更新 `composer` 插件,会删除并替换 `vendor` 目录
* 执行 `php think run` 启用本地开发环境,访问 `http://127.0.0.1:8000`
* 执行 `php think xadmin:fansall` 同步微信粉丝数据(依赖于 `wechat` 模块)
* 执行 `php think xadmin:sysmenu` 重写系统菜单并生成新编号并清理已禁用的菜单
* 执行 `php think xadmin:version` 查看当前版本号,显示 `ThinkPHP` 版本及 `ThinkLibrary` 版本
#### 1. 线上代码更新