mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-07-09 09:31:06 +08:00
Compare commits
4 Commits
6a01c4d83e
...
cf7297ced6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf7297ced6 | ||
|
|
a8fb5b0077 | ||
|
|
2bb7f42c69 | ||
|
|
501e98853c |
10
app/admin/module/change/2022.03.06.01.md
Normal file
10
app/admin/module/change/2022.03.06.01.md
Normal 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 显示,首次加载等待成功后再显示界面。
|
||||
@ -16,7 +16,7 @@
|
||||
|
||||
return [
|
||||
'name' => 'admin',
|
||||
'vers' => '2021.11.08.01',
|
||||
'vers' => '2022.03.06.01',
|
||||
'user' => '广州楚才信息科技有限公司',
|
||||
'link' => 'https://www.cuci.cc',
|
||||
'desc' => '系统管理模块,提供系统配置及应用模块管理。',
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "admin",
|
||||
"author": "Anyon",
|
||||
"version": "2021.06.17.01",
|
||||
"version": "2022.03.06.01",
|
||||
"content": "ThinkAdmin 系统基础模块"
|
||||
}
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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"></span>{$title|default=''}
|
||||
<div class="pull-right">{block name='button'}{/block}</div>
|
||||
</div>
|
||||
|
||||
@ -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"></span>{$title|default=''}
|
||||
<div class="pull-right">{block name='button'}{/block}</div>
|
||||
</div>
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -195,10 +195,7 @@
|
||||
}
|
||||
|
||||
.notselect {
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none
|
||||
#NotSelect();
|
||||
}
|
||||
|
||||
.transition {
|
||||
|
||||
@ -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
@ -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. 线上代码更新
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user