Compare commits

..

No commits in common. "cf7297ced6a46f6cc90a738145eadb1277d79116" and "6a01c4d83e07f52c8069bcb3f350d1bf2cb682e4" have entirely different histories.

13 changed files with 14 additions and 33 deletions

View File

@ -1,10 +0,0 @@
* 升级 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' => '2022.03.06.01',
'vers' => '2021.11.08.01',
'user' => '广州楚才信息科技有限公司',
'link' => 'https://www.cuci.cc',
'desc' => '系统管理模块,提供系统配置及应用模块管理。',

View File

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

View File

@ -1,4 +1,4 @@
<div class="layui-side">
<div class="layui-side notselect">
<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">
<div class="layui-header notselect">
<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">
<div class="layui-card-header notselect">
<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">
<div class="layui-card-header notselect">
<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,14 +115,6 @@
-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,7 +195,10 @@
}
.notselect {
#NotSelect();
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none
}
.transition {

View File

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

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,7 +79,6 @@ 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. 线上代码更新