代码样式同步

This commit is contained in:
邹景立 2021-09-24 18:53:31 +08:00
parent 4b52c4d9f2
commit b7d2d7af49
10 changed files with 24 additions and 24 deletions

View File

@ -69,7 +69,7 @@ class Config extends Controller
} }
foreach ($this->request->post() as $name => $value) sysconf($name, $value); foreach ($this->request->post() as $name => $value) sysconf($name, $value);
sysoplog('系统配置管理', "修改系统参数成功"); sysoplog('系统配置管理', "修改系统参数成功");
$this->success('修改系统参数成功!', sysuri("{$xpath}/index/index") . '#' . url("{$xpath}/config/index")); $this->success('修改系统参数成功!', 'javascript:$.form.reload(true)');
} }
} }

View File

@ -99,7 +99,7 @@ class Index extends Controller
} }
if ($this->app->request->isGet()) { if ($this->app->request->isGet()) {
$this->verify = true; $this->verify = true;
$this->_form('SystemUser', 'admin@user/pass', 'id', [], ['id' => $id]); SystemUser::mForm('admin@user/pass', 'id', [], ['id' => $id]);
} else { } else {
$data = $this->_vali([ $data = $this->_vali([
'password.require' => '登录密码不能为空!', 'password.require' => '登录密码不能为空!',

View File

@ -46,7 +46,7 @@ class Login extends Controller
$this->title = '系统登录'; $this->title = '系统登录';
$this->captchaType = 'LoginCaptcha'; $this->captchaType = 'LoginCaptcha';
$this->captchaToken = CodeExtend::uniqidDate(18); $this->captchaToken = CodeExtend::uniqidDate(18);
$this->devmode = SystemService::instance()->checkRunMode(); $this->developmentMode = SystemService::instance()->checkRunMode();
// 刷新当前后台域名 // 刷新当前后台域名
$host = "{$this->request->scheme()}://{$this->request->host()}"; $host = "{$this->request->scheme()}://{$this->request->host()}";
if ($host !== sysconf('base.site_host')) sysconf('base.site_host', $host); if ($host !== sysconf('base.site_host')) sysconf('base.site_host', $host);

View File

@ -65,7 +65,7 @@ class Menu extends Controller
// 菜单数据树数据变平化 // 菜单数据树数据变平化
$data = DataExtend::arr2table($data); $data = DataExtend::arr2table($data);
foreach ($data as &$vo) { foreach ($data as &$vo) {
if ($vo['url'] !== '#' && !preg_match('#^https?://#', $vo['url'])) { if ($vo['url'] !== '#' && !preg_match('/^(https?:)?(\/\/|\\\\)/i', $vo['url'])) {
$vo['url'] = trim(url($vo['url']) . ($vo['params'] ? "?{$vo['params']}" : ''), '\\/'); $vo['url'] = trim(url($vo['url']) . ($vo['params'] ? "?{$vo['params']}" : ''), '\\/');
} }
$vo['ids'] = join(',', DataExtend::getArrSubIds($data, $vo['id'])); $vo['ids'] = join(',', DataExtend::getArrSubIds($data, $vo['id']));

View File

@ -49,11 +49,6 @@ class User extends Controller
$this->bases = SystemBase::mk()->items('身份权限'); $this->bases = SystemBase::mk()->items('身份权限');
}, function (QueryHelper $query) { }, function (QueryHelper $query) {
// 关联用户身份资料
$query->with(['userinfo' => function (Relation $relation) {
$relation->field('code,name,content');
}]);
// 加载对应数据列表 // 加载对应数据列表
if ($this->type === 'index') { if ($this->type === 'index') {
$query->where(['is_deleted' => 0, 'status' => 1]); $query->where(['is_deleted' => 0, 'status' => 1]);
@ -61,6 +56,11 @@ class User extends Controller
$query->where(['is_deleted' => 0, 'status' => 0]); $query->where(['is_deleted' => 0, 'status' => 0]);
} }
// 关联用户身份资料
$query->with(['userinfo' => function (Relation $relation) {
$relation->field('code,name,content');
}]);
// 数据列表搜索过滤 // 数据列表搜索过滤
$query->equal('status,usertype')->dateBetween('login_at,create_at'); $query->equal('status,usertype')->dateBetween('login_at,create_at');
$query->like('username,nickname,contact_phone#phone,contact_mail#mail'); $query->like('username,nickname,contact_phone#phone,contact_mail#mail');

View File

@ -97,7 +97,6 @@ class Runtime extends Controller
public function config() public function config()
{ {
if (AdminService::instance()->isSuper()) try { if (AdminService::instance()->isSuper()) try {
$this->app->db->transaction(function () {
[$tmpdata, $newdata] = [[], []]; [$tmpdata, $newdata] = [[], []];
foreach (SystemConfig::mk()->order('type,name asc')->cursor() as $item) { foreach (SystemConfig::mk()->order('type,name asc')->cursor() as $item) {
$tmpdata[$item['type']][$item['name']] = $item['value']; $tmpdata[$item['type']][$item['name']] = $item['value'];
@ -105,6 +104,7 @@ class Runtime extends Controller
foreach ($tmpdata as $type => $items) foreach ($items as $name => $value) { foreach ($tmpdata as $type => $items) foreach ($items as $name => $value) {
$newdata[] = ['type' => $type, 'name' => $name, 'value' => $value]; $newdata[] = ['type' => $type, 'name' => $name, 'value' => $value];
} }
$this->app->db->transaction(function () use ($newdata) {
SystemConfig::mQuery()->empty()->insertAll($newdata); SystemConfig::mQuery()->empty()->insertAll($newdata);
}); });
$this->app->cache->delete('SystemConfig'); $this->app->cache->delete('SystemConfig');

View File

@ -186,7 +186,7 @@ class Upload extends Controller
/** /**
* 获取本地文件对象 * 获取本地文件对象
* @return UploadedFile * @return UploadedFile|void
*/ */
private function getFile(): UploadedFile private function getFile(): UploadedFile
{ {

View File

@ -4,7 +4,7 @@
<div class="login-container" data-supersized="__ROOT__/static/theme/img/login/bg1.jpg,__ROOT__/static/theme/img/login/bg2.jpg"> <div class="login-container" data-supersized="__ROOT__/static/theme/img/login/bg1.jpg,__ROOT__/static/theme/img/login/bg2.jpg">
<div class="header notselect layui-hide-xs"> <div class="header notselect layui-hide-xs">
<a href="{:url('@')}" class="title">{:sysconf('app_name')}<span>{:sysconf('app_version')}</span></a> <a href="{:url('@')}" class="title">{:sysconf('app_name')}<span>{:sysconf('app_version')}</span></a>
{notempty name='devmode'} {notempty name='developmentMode'}
<a class="pull-right layui-anim layui-anim-fadein" href='https://gitee.com/zoujingli/ThinkAdmin'> <a class="pull-right layui-anim layui-anim-fadein" href='https://gitee.com/zoujingli/ThinkAdmin'>
<img src='https://gitee.com/zoujingli/ThinkAdmin/widgets/widget_1.svg' alt='Fork me on Gitee'> <img src='https://gitee.com/zoujingli/ThinkAdmin/widgets/widget_1.svg' alt='Fork me on Gitee'>
</a> </a>
@ -38,10 +38,10 @@
</ul> </ul>
</form> </form>
<div class="footer notselect"> <div class="footer notselect">
<p class="layui-hide-xs"><a target="_blank" href="https://www.google.cn/chrome">推荐使用谷歌浏览器</a></p> <p class="layui-hide-xs">推荐使用 <a target="_blank" href="https://www.google.cn/chrome">Google Chrome</a> <a target="_blank" href="https://www.microsoft.com/zh-cn/edge#platform">Microsoft Edge</a> 浏览器访问</p>
{:sysconf('site_copy')} {:sysconf('site_copy')}
{if sysconf('beian')}<span class="padding-5">|</span><a target="_blank" href="http://beian.miit.gov.cn">{:sysconf('beian')}</a>{/if} {if sysconf('beian')}<span class="padding-5">|</span><a target="_blank" href="https://beian.miit.gov.cn/">{:sysconf('beian')}</a>{/if}
{if sysconf('miitbeian')}<span class="padding-5">|</span><a target="_blank" href="http://beian.miit.gov.cn">{:sysconf('miitbeian')}</a>{/if} {if sysconf('miitbeian')}<span class="padding-5">|</span><a target="_blank" href="https://beian.miit.gov.cn/">{:sysconf('miitbeian')}</a>{/if}
</div> </div>
</div> </div>
{/block} {/block}

View File

@ -19,7 +19,7 @@
<ul class="layui-tab-title"> <ul class="layui-tab-title">
{foreach ['index'=>'系统菜单','recycle'=>'回 收 站'] as $k=>$v} {foreach ['index'=>'系统菜单','recycle'=>'回 收 站'] as $k=>$v}
{if isset($type) and $type eq $k} {if isset($type) and $type eq $k}
<li class="layui-this" data-open="{:url('index')}?type={$k}">{$v}</li> <li class="layui-this color-green" data-open="{:url('index')}?type={$k}">{$v}</li>
{else} {else}
<li data-open="{:url('index')}?type={$k}">{$v}</li> <li data-open="{:url('index')}?type={$k}">{$v}</li>
{/if}{/foreach} {/if}{/foreach}

View File

@ -22,7 +22,7 @@
<div class="layui-tab layui-tab-card"> <div class="layui-tab layui-tab-card">
<ul class="layui-tab-title"> <ul class="layui-tab-title">
{foreach ['index'=>'系统用户','recycle'=>'回 收 站'] as $k=>$v}{if isset($type) and $type eq $k} {foreach ['index'=>'系统用户','recycle'=>'回 收 站'] as $k=>$v}{if isset($type) and $type eq $k}
<li data-open="{:url('index')}?type={$k}" class="layui-this">{$v}</li> <li data-open="{:url('index')}?type={$k}" class="layui-this color-green">{$v}</li>
{else} {else}
<li data-open="{:url('index')}?type={$k}">{$v}</li> <li data-open="{:url('index')}?type={$k}">{$v}</li>
{/if}{/foreach} {/if}{/foreach}