2013-04-09 03:21:30 +00:00
|
|
|
<?php
|
2018-05-11 10:54:55 +00:00
|
|
|
$this->headTitle($this->config->title->site);
|
|
|
|
$this->headTitle($this->config->title->data);
|
|
|
|
$this->headTitle('数据列表浏览');
|
|
|
|
$this->headTitle()->setSeparator(' - ');
|
|
|
|
$this->headLink()->appendStylesheet('/static-sanji/css/data-list.css');
|
|
|
|
$this->headLink()->appendStylesheet('/static-sanji-v2/css/bootstrap.min.css');
|
|
|
|
$this->headLink()->appendStylesheet('/static-sanji-v2/css/top.css');
|
|
|
|
$this->headLink()->appendStylesheet('/static-sanji-v2/css/dataProduct.css');
|
|
|
|
$this->headLink()->appendStylesheet('/static-sanji-v2/css/bottom.css');
|
|
|
|
$this->nav[] = array('link' => "/data/browse", 'title' => '数据列表浏览');
|
|
|
|
$this->theme->AppendPlus($this, 'colorbox');
|
2013-04-09 03:21:30 +00:00
|
|
|
?>
|
2018-02-04 09:46:00 +00:00
|
|
|
<hr class="c-f">
|
|
|
|
<div class="container">
|
2018-02-05 05:24:50 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<?= $this->partial('data/tools.phtml'); ?>
|
2018-02-04 09:46:00 +00:00
|
|
|
</div>
|
2018-02-05 05:24:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-11 10:54:55 +00:00
|
|
|
<!--最近更新数据-->
|
|
|
|
<div class="intro1">
|
|
|
|
<div class="container">
|
|
|
|
<h2 class="title">最近更新数据</h2>
|
|
|
|
<a href="">查看更多</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-02-05 05:24:50 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="col-lg-12">
|
2018-05-11 10:54:55 +00:00
|
|
|
<?php foreach ($this->paginator as $md) : ?>
|
2018-02-05 05:24:50 +00:00
|
|
|
<div class="row c-list">
|
|
|
|
<div class="col-md-3 c-img-box">
|
|
|
|
<div class="c-cover"></div>
|
2018-05-11 10:54:55 +00:00
|
|
|
<a class="c-cover" href="/data/<?php echo $md['uuid']; ?>"></a>
|
|
|
|
<div class="c-img"
|
|
|
|
style="background:url('/service/thumb/id/<?php echo $md['id']; ?>') no-repeat center; background-size:cover"></div>
|
|
|
|
<!-- <a href="/service/bigthumb/uuid/-->
|
|
|
|
<? //= $md['uuid'] ?><!--" class="pull-left colorbox">-->
|
|
|
|
<!-- <img class="media-object" src="/service/thumb/id/-->
|
|
|
|
<?php //echo $md['id'];?><!--">-->
|
2018-02-05 05:24:50 +00:00
|
|
|
<!-- </a>-->
|
|
|
|
</div>
|
|
|
|
<div class="col-md-9 c-list-box">
|
2018-05-11 10:54:55 +00:00
|
|
|
<h4><a href="/data/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']); ?></a></h4>
|
|
|
|
<p class="c-info"><span class="c-click"></span><i><?php echo $md['viewed'] ?></i> | <span
|
|
|
|
class="c-time"></span><i><?php echo date("d,M,Y", strtotime($md['ts_published'])); ?></i>
|
|
|
|
</p>
|
2018-02-05 05:24:50 +00:00
|
|
|
<p class="c-con">
|
2018-05-11 10:54:55 +00:00
|
|
|
<?php echo str_replace(array("\r\n", "\n", "\r"), '<br />', mb_strlen($md['description']) > 200 ? $this->escape(mb_substr($md['description'], 0, 200, 'UTF-8') . '...') : $this->escape($md['description'])); ?>
|
2018-02-05 05:24:50 +00:00
|
|
|
</p>
|
|
|
|
<div class="dam clear">
|
|
|
|
<div class="c-left">
|
|
|
|
<i>文件大小</i>
|
2018-05-11 10:54:55 +00:00
|
|
|
<em><?php echo round($md['filesize'] / 2014, 2) > 0.99 ? round($md['filesize'] / 2014, 2) : '小于1' ?>
|
|
|
|
MB</em>
|
2018-02-05 05:24:50 +00:00
|
|
|
</div>
|
2018-05-11 10:54:55 +00:00
|
|
|
<a class="c-right" href="/data/<?php echo $md['uuid']; ?>">更多</a>
|
2018-02-05 05:24:50 +00:00
|
|
|
</div>
|
2018-02-04 09:46:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-02-05 05:24:50 +00:00
|
|
|
<?php endforeach; ?>
|
2018-02-04 09:46:00 +00:00
|
|
|
</div>
|
2013-04-09 03:21:30 +00:00
|
|
|
</div>
|
2018-02-04 09:46:00 +00:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<div class="page">
|
|
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-04-09 03:21:30 +00:00
|
|
|
</div>
|
2013-05-13 03:57:27 +00:00
|
|
|
|
2018-02-04 09:46:00 +00:00
|
|
|
|
|
|
|
<script src="/static-sanji/js/data-list.js"></script>
|
2013-05-13 03:57:27 +00:00
|
|
|
<script type="text/javascript" charset="utf-8">
|
2018-05-11 10:54:55 +00:00
|
|
|
//$(document).ready(function(){
|
|
|
|
// $(".colorbox").colorbox({rel:"colorbox",photo:"true",transition:"fade"});
|
|
|
|
// $(".colorbox").colorbox({photo:"true"});
|
|
|
|
//});
|
2013-05-13 03:57:27 +00:00
|
|
|
</script>
|