修改后台系统样式

This commit is contained in:
Anyon 2020-09-25 23:43:28 +08:00
parent f6bd9261fa
commit 53d9b0fb15
5 changed files with 15 additions and 4 deletions

View File

@ -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 * @auth true

View File

@ -26,7 +26,7 @@
</label> </label>
</li> </li>
<li class="verify layui-hide"> <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> <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="请输入验证码"> <input class="layui-input" required pattern="^\S{4,}$" name="verify" maxlength="4" autocomplete="off" placeholder="验证码" title="请输入验证码">
</label> </label>

View File

@ -95,7 +95,7 @@ class NewsItem extends Controller
if ($this->request->isGet()) { if ($this->request->isGet()) {
$query = $this->app->db->name('DataNewsMark')->where(['deleted' => 0, 'status' => 1]); $query = $this->app->db->name('DataNewsMark')->where(['deleted' => 0, 'status' => 1]);
$this->mark = $query->order('sort desc,id desc')->select()->toArray(); $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 { } else {
$data['mark'] = mark_array_string($data['mark'] ?? []); $data['mark'] = mark_array_string($data['mark'] ?? []);
} }

View File

@ -23,7 +23,7 @@ return [
// cookie 启用安全传输 // cookie 启用安全传输
'secure' => false, 'secure' => false,
// httponly 设置 // httponly 设置
'httponly' => false, 'httponly' => true,
// 是否使用 setcookie // 是否使用 setcookie
'setcookie' => true, 'setcookie' => true,
]; ];

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?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); declare (strict_types = 1);
return array ( return array (
0 => 'think\\admin\\Library', 0 => 'think\\admin\\Library',