ComposerUpdate

This commit is contained in:
Anyon 2020-01-11 12:10:18 +08:00
parent dc51cb132f
commit b860357780
6 changed files with 20 additions and 16 deletions

View File

@ -19,11 +19,11 @@
<script src="__ROOT__/static/plugs/jquery/pace.min.js"></script>
</head>
<body>
<body class="layui-layout-body">
{block name='body'}
<!-- 主体内容 开始 -->
{block name='content'}{/block}
<!-- 主体内容 结束 -->
<div class="layui-layout layui-layout-admin layui-layout-left-hide">
<div class="layui-body" style="top:0">{block name='content'}{/block}</div>
</div>
{/block}
<script src="__ROOT__/static/plugs/layui/layui.all.js"></script>
<script src="__ROOT__/static/plugs/require/require.js"></script>
@ -31,4 +31,4 @@
{block name='script'}{/block}
</body>
</html>
</html>

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a"
"reference": "7d1a3dfdeab8aa4868dea3c1407170680127c412"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a",
"reference": "bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7d1a3dfdeab8aa4868dea3c1407170680127c412",
"reference": "7d1a3dfdeab8aa4868dea3c1407170680127c412",
"shasum": "",
"mirrors": [
{
@ -958,7 +958,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2020-01-10T04:14:42+00:00"
"time": "2020-01-10T04:15:10+00:00"
},
{
"name": "zoujingli/wechat-developer",

View File

@ -581,7 +581,11 @@ $(function () {
$body.on('submit', 'form.form-search', function () {
var url = $(this).attr('action').replace(/&?page=\d+/g, ''), split = url.indexOf('?') === -1 ? '?' : '&';
if ((this.method || 'get').toLowerCase() === 'get') {
return window.location.href = '#' + $.menu.parseUri(url + split + $(this).serialize());
if (location.href.indexOf('spm=') > -1) {
return window.location.href = '#' + $.menu.parseUri(url + split + $(this).serialize());
} else {
return window.location.href = $.menu.parseUri(url + split + $(this).serialize());
}
}
$.form.load(url, this, 'post');
});

View File

@ -935,12 +935,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a"
"reference": "7d1a3dfdeab8aa4868dea3c1407170680127c412"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a",
"reference": "bb619fa1955cc2a8ce8ae7dea4d6787149a9ac2a",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7d1a3dfdeab8aa4868dea3c1407170680127c412",
"reference": "7d1a3dfdeab8aa4868dea3c1407170680127c412",
"shasum": "",
"mirrors": [
{
@ -956,7 +956,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2020-01-10T04:14:42+00:00",
"time": "2020-01-10T04:15:10+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-01-10 12:15:56
// This file is automatically generated at:2020-01-11 12:10:01
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -115,7 +115,7 @@ class QueueService extends Service
*/
public function addCleanQueue()
{
$this->register('清理7天前记录及执行超时任务', "xtask:clean", 0, [], 0, 3600);
$this->register('清理7天前记录及执行超时任务', "xtask:clean", 0, [], 0, 3600);
}
/**