31 lines
817 B
PHTML
31 lines
817 B
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle('后台管理');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/admin.css');
|
||
$this->theme->AppendPlus($this,'colorbox');
|
||
?>
|
||
<div class="row">
|
||
<div class="hidden-sm hidden-xs col-md-2">
|
||
<?= $this->partial('sys/left.phtml'); ?>
|
||
</div>
|
||
<div class="col-md-10 col-sm-12">
|
||
<?php echo $this->form; ?>
|
||
<?php if ($this->deal) : ?>
|
||
<div id="mdlist">
|
||
已处理数据:
|
||
<?php foreach ($this->deal as $deal): ?>
|
||
<ul>
|
||
<li>UUID:<?php echo $deal['uuid']; ?></li>
|
||
<li><a href="/data/<?= $deal['uuid']; ?>"><?= $deal['title']; ?></a></li>
|
||
</ul>
|
||
<?php endforeach; ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($this->test) : ?>
|
||
<div>测试结果:<br />
|
||
<?= $this->escape($this->test) ?>
|
||
</div>
|
||
<?php endif; ?>
|
||
</div>
|