westdc-zf1/application/admin/views/scripts/data/datafileimport.phtml

35 lines
1.3 KiB
PHTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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/data">数据管理</a>');
$this->breadcrumb('导入数据目录文件</a>');
$this->breadcrumb()->setSeparator(' > ');
?>
<div id="leftPanel">
<?= $this->partial('data/left.phtml'); ?>
</div>
<div id="rightPanel">
<?php if ($this->msg or $this->messages) :?>
<div id="message">
<?php if ($this->msg) : ?>
<p><?php echo $this->msg; ?></p>
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
<p><?php echo $msg; ?></p>
<?php endforeach;endif; ?>
</div>
<?php endif; ?>
<form method="POST">
<p>数据目录文件通过在数据服务器所在目录进行信息提取后生成的一系列文本文件上传到本服务器上再进行处理。具体包括dataset和以UUID为名称的文本文件。</p>
<p>如若文件很多,处理时间会较长,请耐心等候。</p>
<p>也可以采用分批处理UUID文件即一次上传部分UUID文件。</p>
<p>数据目录文件: <input type="text" name="directory"></p>
<input type="submit" value="导入数据目录" />
</form>
</div>