36 lines
1.5 KiB
PHTML
36 lines
1.5 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle('后台管理');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->headLink()->appendStylesheet('/css/admin.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
||
$this->breadcrumb('<a href="/admin/sys">系统管理</a>');
|
||
$this->breadcrumb('文献平台同步');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
$this->headScript()->appendFile('/js/jquery-1.6.4.min.js');
|
||
?>
|
||
<div id="leftPanel">
|
||
<?= $this->partial('sys/left.phtml'); ?>
|
||
</div>
|
||
|
||
<div id="rightPanel">
|
||
<?php if ($this->msg or $this->messages) :?>
|
||
<div class="box box-info">
|
||
<?php if ($this->msg) : ?>
|
||
<?php echo $this->msg; ?>
|
||
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
||
<?php echo $msg; ?>
|
||
<?php endforeach;endif; ?>
|
||
<script language="javascript">
|
||
setTimeout('$(".box-info").remove()',5000);
|
||
</script>
|
||
</div>
|
||
<?php endif; ?>
|
||
<form method="post">
|
||
<p>WestDC共有文献<?php echo $this->count['westdccount']; ?>条数,Seekspace上共有文献<?php echo $this->count['seekcount']; ?>条。</p>
|
||
<p>此同步比较慢,请耐心等候!</p>
|
||
<input type="hidden" name="submit" value="1" />
|
||
<p><input type="submit" class="btn" value="确认同步?" /></p>
|
||
</form>
|
||
</div>
|