修改任务进程页面

This commit is contained in:
Anyon 2019-12-14 14:49:30 +08:00
parent cb519c2cf6
commit 8610fece9c
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
{block name="content"}
<div class="think-box-shadow">
<div class="layui-row layui-col-space20 portal-block-container">
<div class="layui-row layui-col-space20 portal-block-container notselect">
<div class="layui-col-sm6 layui-col-md3">
<div class="portal-block-item nowrap" style="background:linear-gradient(-125deg,#57bdbf,#2f9de2)">
<div>待处理</div>

View File

@ -1,14 +1,14 @@
{if session('user.username') eq 'admin'}
<fieldset class="margin-bottom-15">
<legend>守护状态</legend>
<legend class="notselect">守护状态</legend>
<div class="layui-code border-0 margin-top-0">
<h4 class="color-desc margin-top-10">守护进程运行状态</h4>
<h4 class="color-desc margin-top-10 notselect">守护进程运行状态</h4>
{if $listen}
<span class="color-green">{$message|raw|default='--'}</span>
{else}
<span class="color-red">{$message|raw|default='--'}</span>
{/if}
<h4 class="color-desc margin-top-10">配置定时任务来检查并启动进程(建议每分钟执行)</h4>
<h4 class="color-desc margin-top-10 notselect">配置定时任务来检查并启动进程(建议每分钟执行)</h4>
<p>{$command|default='--'}</p>
</div>
</fieldset>