mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
36 lines
1.6 KiB
PHP
36 lines
1.6 KiB
PHP
<form action="{:sysuri()}" method="post" data-auto="true" class="layui-form layui-card" id="theme">
|
|
<div class="layui-card-body padding-left-40">
|
|
|
|
<div class="layui-form-item margin-bottom-5 label-required-prev">
|
|
<div class="help-label"><b>后台配色方案</b>Theme Style</div>
|
|
<div class="layui-textarea think-bg-gray" style="min-height:unset">
|
|
{foreach $themes as $k=>$v}
|
|
<label class="think-radio">
|
|
{if isset($theme) and $theme eq $k}
|
|
<input name="site_theme" type="radio" value="{$k}" lay-ignore checked> {$v}
|
|
{else}
|
|
<input name="site_theme" type="radio" value="{$k}" lay-ignore> {$v}
|
|
{/if}
|
|
</label>
|
|
{/foreach}
|
|
</div>
|
|
<p class="help-block">切换配色方案,需要保存成功后配色方案才会永久生效,下次登录也会有效哦 ~</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hr-line-dashed"></div>
|
|
<div class="layui-form-item text-center">
|
|
<button class="layui-btn" type="submit">保存配置</button>
|
|
<button class="layui-btn layui-btn-danger" type='button' data-close>取消修改</button>
|
|
</div>
|
|
</form>
|
|
|
|
<script>
|
|
$('form#theme input[name=site_theme]').on('click', function () {
|
|
var alls = '', that = this, prox = 'layui-layout-theme-', curt = prox + that.value;
|
|
$('form#theme input[name=site_theme]').map(function () {
|
|
if (this.value !== that.value) alls += ' ' + prox + this.value;
|
|
});
|
|
$('.layui-layout-body').removeClass(alls).addClass(curt)
|
|
});
|
|
</script> |