mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改后台系统样式
This commit is contained in:
parent
f6bd9261fa
commit
53d9b0fb15
@ -121,6 +121,17 @@ class Menu extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 菜单编辑成功后刷新页面
|
||||
* @param bool $state
|
||||
*/
|
||||
protected function _form_result(bool $state)
|
||||
{
|
||||
if ($state) {
|
||||
$this->success('系统菜单修改成功!', 'javascript:location.reload()');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改菜单状态
|
||||
* @auth true
|
||||
|
@ -26,7 +26,7 @@
|
||||
</label>
|
||||
</li>
|
||||
<li class="verify layui-hide">
|
||||
<label class="inline-block relative">
|
||||
<label class="inline-block relative label-required-null">
|
||||
<i class="layui-icon layui-icon-picture-fine"></i>
|
||||
<input class="layui-input" required pattern="^\S{4,}$" name="verify" maxlength="4" autocomplete="off" placeholder="验证码" title="请输入验证码">
|
||||
</label>
|
||||
|
@ -95,7 +95,7 @@ class NewsItem extends Controller
|
||||
if ($this->request->isGet()) {
|
||||
$query = $this->app->db->name('DataNewsMark')->where(['deleted' => 0, 'status' => 1]);
|
||||
$this->mark = $query->order('sort desc,id desc')->select()->toArray();
|
||||
$data['mark'] = mark_string_array($data['mark']);
|
||||
$data['mark'] = mark_string_array($data['mark'] ?? '');
|
||||
} else {
|
||||
$data['mark'] = mark_array_string($data['mark'] ?? []);
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ return [
|
||||
// cookie 启用安全传输
|
||||
'secure' => false,
|
||||
// httponly 设置
|
||||
'httponly' => false,
|
||||
'httponly' => true,
|
||||
// 是否使用 setcookie
|
||||
'setcookie' => true,
|
||||
];
|
||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
// This file is automatically generated at:2020-09-25 21:38:55
|
||||
// This file is automatically generated at:2020-09-25 23:42:07
|
||||
declare (strict_types = 1);
|
||||
return array (
|
||||
0 => 'think\\admin\\Library',
|
||||
|
Loading…
x
Reference in New Issue
Block a user