mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
同步更新插件代码
This commit is contained in:
parent
5772c56005
commit
6f704873ee
@ -42,7 +42,7 @@ class Auth extends Controller
|
|||||||
SystemAuth::mQuery()->layTable(function () {
|
SystemAuth::mQuery()->layTable(function () {
|
||||||
$this->title = '系统权限管理';
|
$this->title = '系统权限管理';
|
||||||
}, function (QueryHelper $query) {
|
}, function (QueryHelper $query) {
|
||||||
$query->dateBetween('create_at')->like('title,desc')->equal('status,utype');
|
$query->like('title,desc')->equal('status,utype')->dateBetween('create_at');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
namespace app\admin\controller;
|
namespace app\admin\controller;
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use Ip2Region;
|
use Ip2Region;
|
||||||
use think\admin\Controller;
|
use think\admin\Controller;
|
||||||
use think\admin\helper\QueryHelper;
|
use think\admin\helper\QueryHelper;
|
||||||
@ -75,7 +74,7 @@ class Oplog extends Controller
|
|||||||
$this->success('日志清理成功!');
|
$this->success('日志清理成功!');
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
throw $exception;
|
throw $exception;
|
||||||
} catch (Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
trace_file($exception);
|
trace_file($exception);
|
||||||
$this->error("日志清理失败,{$exception->getMessage()}");
|
$this->error("日志清理失败,{$exception->getMessage()}");
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
namespace app\admin\controller;
|
namespace app\admin\controller;
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use think\admin\Controller;
|
use think\admin\Controller;
|
||||||
use think\admin\helper\QueryHelper;
|
use think\admin\helper\QueryHelper;
|
||||||
use think\admin\model\SystemQueue;
|
use think\admin\model\SystemQueue;
|
||||||
@ -90,7 +89,7 @@ class Queue extends Controller
|
|||||||
$this->success('任务重置成功!', $queue->code);
|
$this->success('任务重置成功!', $queue->code);
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
throw $exception;
|
throw $exception;
|
||||||
} catch (Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
trace_file($exception);
|
trace_file($exception);
|
||||||
$this->error($exception->getMessage());
|
$this->error($exception->getMessage());
|
||||||
}
|
}
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
|
|
||||||
namespace app\admin\controller\api;
|
namespace app\admin\controller\api;
|
||||||
|
|
||||||
use Error;
|
|
||||||
use Exception;
|
|
||||||
use think\admin\Controller;
|
use think\admin\Controller;
|
||||||
use think\admin\service\AdminService;
|
use think\admin\service\AdminService;
|
||||||
use think\admin\service\QueueService;
|
use think\admin\service\QueueService;
|
||||||
@ -48,7 +46,7 @@ class Queue extends Controller
|
|||||||
}
|
}
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
throw $exception;
|
throw $exception;
|
||||||
} catch (Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
trace_file($exception);
|
trace_file($exception);
|
||||||
$this->error($exception->getMessage());
|
$this->error($exception->getMessage());
|
||||||
} else {
|
} else {
|
||||||
@ -74,7 +72,7 @@ class Queue extends Controller
|
|||||||
}
|
}
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
throw $exception;
|
throw $exception;
|
||||||
} catch (Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
trace_file($exception);
|
trace_file($exception);
|
||||||
$this->error($exception->getMessage());
|
$this->error($exception->getMessage());
|
||||||
} else {
|
} else {
|
||||||
@ -95,7 +93,7 @@ class Queue extends Controller
|
|||||||
} else {
|
} else {
|
||||||
echo "<span class='color-red pointer' data-tips-text='{$message}'>未启动</span>";
|
echo "<span class='color-red pointer' data-tips-text='{$message}'>未启动</span>";
|
||||||
}
|
}
|
||||||
} catch (Error|Exception $exception) {
|
} catch (\Error|\Exception $exception) {
|
||||||
echo "<span class='color-red pointer' data-tips-text='{$exception->getMessage()}'>异 常</span>";
|
echo "<span class='color-red pointer' data-tips-text='{$exception->getMessage()}'>异 常</span>";
|
||||||
} else {
|
} else {
|
||||||
echo "<span class='color-red pointer' data-tips-text='只有超级管理员才能操作!'>无权限</span>";
|
echo "<span class='color-red pointer' data-tips-text='只有超级管理员才能操作!'>无权限</span>";
|
||||||
|
@ -127,6 +127,7 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) {
|
|||||||
uploader.type = 'put';
|
uploader.type = 'put';
|
||||||
uploader.head['file-path'] = ret.data['filepath'];
|
uploader.head['file-path'] = ret.data['filepath'];
|
||||||
uploader.head['authorization'] = ret.data['authorization'];
|
uploader.head['authorization'] = ret.data['authorization'];
|
||||||
|
uploader.form = new FormData();
|
||||||
} else if (ret.data.uptype === 'alioss') {
|
} else if (ret.data.uptype === 'alioss') {
|
||||||
uploader.form.append('policy', ret.data['policy']);
|
uploader.form.append('policy', ret.data['policy']);
|
||||||
uploader.form.append('signature', ret.data['signature']);
|
uploader.form.append('signature', ret.data['signature']);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<!--{/if}-->
|
<!--{/if}-->
|
||||||
|
|
||||||
<!--{if auth("remove")}-->
|
<!--{if auth("remove")}-->
|
||||||
<button data-action='{:url("remove")}' data-table-id="RoleTable" data-rule="id#{id}" data-confirm="确定要批量删除权限吗?" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</button>
|
<button data-action='{:url("remove")}' data-rule="id#{id}" data-table-id="RoleTable" data-confirm="确定要批量删除权限吗?" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</button>
|
||||||
<!--{/if}-->
|
<!--{/if}-->
|
||||||
{/block}
|
{/block}
|
||||||
|
|
||||||
|
@ -24,11 +24,7 @@
|
|||||||
{field: 'id', title: 'ID', width: 80, align: 'center', sort: true},
|
{field: 'id', title: 'ID', width: 80, align: 'center', sort: true},
|
||||||
{field: 'name', title: '文件名称', width: '12%', align: 'center'},
|
{field: 'name', title: '文件名称', width: '12%', align: 'center'},
|
||||||
{field: 'hash', title: '文件哈希', width: '15%', align: 'center', templet: '<div><code>{{d.hash}}</code></div>'},
|
{field: 'hash', title: '文件哈希', width: '15%', align: 'center', templet: '<div><code>{{d.hash}}</code></div>'},
|
||||||
{
|
{field: 'size', title: '文件大小', align: 'center', width: '7%', sort: true, templet: '<div>{{-$.formatFileSize(d.size)}}</div>'},
|
||||||
field: 'size', title: '文件大小', align: 'center', width: '7%', sort: true, templet: function (d) {
|
|
||||||
return $.formatFileSize(d.size)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{field: 'xext', title: '文件后缀', align: 'center', width: '7%', sort: true},
|
{field: 'xext', title: '文件后缀', align: 'center', width: '7%', sort: true},
|
||||||
{
|
{
|
||||||
field: 'xurl', title: '查看文件', width: '7%', align: 'center', templet: function (d) {
|
field: 'xurl', title: '查看文件', width: '7%', align: 'center', templet: function (d) {
|
||||||
@ -51,7 +47,7 @@
|
|||||||
},
|
},
|
||||||
{field: 'ctype', title: '存储方式', align: 'center', width: '10%'},
|
{field: 'ctype', title: '存储方式', align: 'center', width: '10%'},
|
||||||
{field: 'create_at', title: '上传时间', align: 'center', width: '15%', sort: true},
|
{field: 'create_at', title: '上传时间', align: 'center', width: '15%', sort: true},
|
||||||
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 140, fixed: 'right'}
|
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 150, fixed: 'right'}
|
||||||
]]
|
]]
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -86,9 +86,10 @@
|
|||||||
'<span class="pull-left layui-badge layui-badge-middle layui-bg-green">完成</span>',
|
'<span class="pull-left layui-badge layui-badge-middle layui-bg-green">完成</span>',
|
||||||
'<span class="pull-left layui-badge layui-badge-middle layui-bg-red">失败</span>',
|
'<span class="pull-left layui-badge layui-badge-middle layui-bg-red">失败</span>',
|
||||||
][d.status] || '') + '执行时间:';
|
][d.status] || '') + '执行时间:';
|
||||||
d.enter_time = d.enter_time || '', d.outer_time = d.outer_time || '0.0000';
|
d.enter_time = d.enter_time || '';
|
||||||
|
d.outer_time = d.outer_time || '0.0000';
|
||||||
if (d.enter_time.length > 12) {
|
if (d.enter_time.length > 12) {
|
||||||
d.html += d.enter_time.substring(12) + '<span class="color-desc"> ( 耗时 ' + d.outer_time + ' ) </span>';
|
d.html += d.enter_time.substring(12) + '<span class="color-desc"> ( ' + d.outer_time + ' ) </span>';
|
||||||
d.html += ' 已执行 <b class="color-blue">' + (d.attempts || 0) + '</b> 次';
|
d.html += ' 已执行 <b class="color-blue">' + (d.attempts || 0) + '</b> 次';
|
||||||
} else {
|
} else {
|
||||||
d.html += '<span class="color-desc">任务未执行</span>'
|
d.html += '<span class="color-desc">任务未执行</span>'
|
||||||
|
2
public/static/plugs/ckeditor5/ckeditor.js
vendored
2
public/static/plugs/ckeditor5/ckeditor.js
vendored
File diff suppressed because one or more lines are too long
@ -956,44 +956,53 @@ input:not(.layui-hide,[type=hidden]) {
|
|||||||
height: 240px;
|
height: 240px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.submit-button-loading {
|
.layui-btn:not([type=button]) {
|
||||||
cursor: default;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
transform: scale(1);
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background: rgba(0, 0, 0, .1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
left: 50%;
|
filter: alpha(opacity=0);
|
||||||
|
opacity: 0;
|
||||||
|
content: '\e63d';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
margin-left: -8px;
|
}
|
||||||
|
|
||||||
#iconLayout(15px);
|
&.submit-button-loading {
|
||||||
content: "\e63d";
|
cursor: pointer;
|
||||||
|
|
||||||
animation-name: layui-rotate;
|
&::before {
|
||||||
-webkit-animation-name: layui-rotate;
|
top: 0;
|
||||||
-webkit-animation-duration: 1s;
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
animation-duration: 1s;
|
&::after {
|
||||||
animation-timing-function: linear;
|
left: 50%;
|
||||||
-webkit-animation-timing-function: linear;
|
filter: alpha(opacity=100);
|
||||||
|
opacity: 1;
|
||||||
|
margin-left: -8px;
|
||||||
|
|
||||||
animation-iteration-count: infinite;
|
#iconLayout(15px);
|
||||||
-webkit-animation-iteration-count: infinite;
|
content: "\e63d";
|
||||||
|
|
||||||
|
animation-name: layui-rotate;
|
||||||
|
-webkit-animation-name: layui-rotate;
|
||||||
|
-webkit-animation-duration: 1s;
|
||||||
|
|
||||||
|
animation-duration: 1s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
-webkit-animation-timing-function: linear;
|
||||||
|
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1174,6 +1183,21 @@ label.think-checkbox {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 8px 10px 8px 6px;
|
margin: 8px 10px 8px 6px;
|
||||||
|
|
||||||
|
&[data-width] {
|
||||||
|
width: 100px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-width^="150"] {
|
||||||
|
width: 150px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-width^="200"] {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.think-radio,
|
.think-radio,
|
||||||
@ -1189,6 +1213,7 @@ label.think-checkbox {
|
|||||||
height: 18px;
|
height: 18px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border: 1px solid @RadioBorderNormalColor;
|
border: 1px solid @RadioBorderNormalColor;
|
||||||
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
@ -1503,7 +1528,7 @@ label.think-checkbox {
|
|||||||
|
|
||||||
.font- {
|
.font- {
|
||||||
&code {
|
&code {
|
||||||
font-family: 'Courier New', 'Lucida Console', Consolas, monospace
|
font-family: 'Courier New', 'Lucida Console', 'Consolas', 'Helvetica Neue', 'Helvetica', 'PingFang SC', 'Tahoma', 'Arial', sans-serif
|
||||||
}
|
}
|
||||||
|
|
||||||
&s10 {
|
&s10 {
|
||||||
|
@ -75,12 +75,11 @@ form.layui-form fieldset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.layui-btn {
|
.layui-btn {
|
||||||
border: 1px solid #009688;
|
border: 1px solid #16baaa;
|
||||||
|
|
||||||
&:hover:not(.layui-btn-disabled) {
|
&:hover:not(.layui-btn-disabled) {
|
||||||
opacity: 1;
|
|
||||||
filter: alpha(opacity=100);
|
filter: alpha(opacity=100);
|
||||||
box-shadow: @ShadowInset;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-warm {
|
&-warm {
|
||||||
@ -107,7 +106,7 @@ form.layui-form fieldset {
|
|||||||
border: 1px solid #098;
|
border: 1px solid #098;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: #009688;
|
background: #009688;
|
||||||
line-height: 28px;
|
line-height: 30px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
|
||||||
+ .layui-btn {
|
+ .layui-btn {
|
||||||
@ -115,8 +114,8 @@ form.layui-form fieldset {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.layui-btn {
|
.layui-btn {
|
||||||
height: 28px;
|
height: 30px;
|
||||||
line-height: 28px;
|
line-height: 32px;
|
||||||
border-width: 0 !important;
|
border-width: 0 !important;
|
||||||
border-radius: 0 !important;
|
border-radius: 0 !important;
|
||||||
|
|
||||||
@ -242,21 +241,30 @@ form.layui-form fieldset {
|
|||||||
|
|
||||||
input.layui-input,
|
input.layui-input,
|
||||||
.layui-btn.layui-btn-sm {
|
.layui-btn.layui-btn-sm {
|
||||||
height: 28px;
|
height: 26px;
|
||||||
line-height: 28px;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
line-height: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layui-btn.layui-btn-sm {
|
.input-right-icon {
|
||||||
margin-top: -1px;
|
width: 28px;
|
||||||
|
height: 26px;
|
||||||
|
line-height: 26px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[lay-size="lg"] {
|
&[lay-size="lg"] {
|
||||||
input.layui-input, .layui-btn.layui-btn-sm {
|
input.layui-input,
|
||||||
|
.layui-btn.layui-btn-sm {
|
||||||
height: 38px;
|
height: 38px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
line-height: 38px;
|
line-height: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-right-icon {
|
||||||
|
width: 38px;
|
||||||
|
height: 36px;
|
||||||
|
line-height: 36px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-table-sort-td {
|
.list-table-sort-td {
|
||||||
@ -273,9 +281,9 @@ form.layui-form fieldset {
|
|||||||
input {
|
input {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
color: #666;
|
color: #666;
|
||||||
|
border: 1px solid @InputBorderNormalColor;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
border: 1px solid @InputBorderNormalColor;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 18px
|
line-height: 18px
|
||||||
}
|
}
|
||||||
@ -303,6 +311,10 @@ form.layui-form fieldset {
|
|||||||
.layui-table-view {
|
.layui-table-view {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
|
.layui-form-switch {
|
||||||
|
margin-top: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
.layui-table-page {
|
.layui-table-page {
|
||||||
.layui-laypage {
|
.layui-laypage {
|
||||||
.layui-laypage-prev,
|
.layui-laypage-prev,
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user