parent
547b61d846
commit
6a00477b53
|
@ -4,9 +4,9 @@
|
||||||
$this->headTitle()->setSeparator(' - ');
|
$this->headTitle()->setSeparator(' - ');
|
||||||
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
||||||
$this->headLink()->appendStylesheet('/css/admin.css');
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
||||||
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
$this->headScript()->appendFile('/js/lib/colorbox/jquery.colorbox-min.js');
|
||||||
$this->headLink()->appendStylesheet('/css/author.css');
|
$this->headLink()->appendStylesheet('/css/author.css');
|
||||||
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
$this->headLink()->appendStylesheet('/js/lib/colorbox/colorbox.css');
|
||||||
$this->breadcrumb('<a href="/">首页</a>');
|
$this->breadcrumb('<a href="/">首页</a>');
|
||||||
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
||||||
$this->breadcrumb('数据版本管理');
|
$this->breadcrumb('数据版本管理');
|
||||||
|
@ -26,7 +26,6 @@
|
||||||
<li class=""><a href="/admin/data/version/ac/bydata">逐数据浏览</a></li>
|
<li class=""><a href="/admin/data/version/ac/bydata">逐数据浏览</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="datalistZ">
|
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
if ($this->mdtitle) echo "<h2>元数据:".$this->mdtitle."</h2>";
|
if ($this->mdtitle) echo "<h2>元数据:".$this->mdtitle."</h2>";
|
||||||
|
@ -53,7 +52,7 @@
|
||||||
<a class="label label-primary" class="label label-danger" onclick="return confirm('是否确定将这个版本恢复到geonetwork?');" href="javascript:action('restore','<?php echo $item['id'];?>');" class="more">恢复到geonetwork</a>
|
<a class="label label-primary" class="label label-danger" onclick="return confirm('是否确定将这个版本恢复到geonetwork?');" href="javascript:action('restore','<?php echo $item['id'];?>');" class="more">恢复到geonetwork</a>
|
||||||
<a class="label label-primary" href="/admin/data/version/ac/diff/id/<?php echo $item['id'];?>" class="more">与前一版对比</a>
|
<a class="label label-primary" href="/admin/data/version/ac/diff/id/<?php echo $item['id'];?>" class="more">与前一版对比</a>
|
||||||
<a class="label label-primary" href="/admin/data/version/ac/diff1/id/<?php echo $item['id'];?>" class="more">与前一发布或提交版对比</a>
|
<a class="label label-primary" href="/admin/data/version/ac/diff1/id/<?php echo $item['id'];?>" class="more">与前一发布或提交版对比</a>
|
||||||
<a class="label label-primary" onclick="$('#commit_submit').attr('onclick','commit(\'<?php echo $item['id'];?>\');');" href="#commitform" class="more inline">提交评审发布</a>
|
<a onclick="$('#commit_submit').attr('onclick','commit(\'<?php echo $item['id'];?>\');');" href="#commitform" class="more inline label label-primary">提交评审发布</a>
|
||||||
</h5>
|
</h5>
|
||||||
<?php if ($item['changelog']) : ?>
|
<?php if ($item['changelog']) : ?>
|
||||||
<p><?php echo $item['changelog']; ?></p>
|
<p><?php echo $item['changelog']; ?></p>
|
||||||
|
@ -65,7 +64,6 @@
|
||||||
<div class="pagenavi"><?= $this->paginator; ?></div>
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<!-- //页面内容 -->
|
<!-- //页面内容 -->
|
||||||
<script>
|
<script>
|
||||||
$('#wapper').width($('body').width()-300);
|
$('#wapper').width($('body').width()-300);
|
||||||
|
@ -94,7 +92,7 @@ function action(ac,id){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
$(".inline").colorbox({inline:true, width:"50%"});
|
$(".inline").colorbox({inline:true, width:"50%", height:"50%"});
|
||||||
function commit(id){
|
function commit(id){
|
||||||
action('commit&changelog='+$('#changelog').val(),id);
|
action('commit&changelog='+$('#changelog').val(),id);
|
||||||
}
|
}
|
||||||
|
@ -104,10 +102,10 @@ function commit(id){
|
||||||
<form>
|
<form>
|
||||||
<p>
|
<p>
|
||||||
<label>版本改动:</label><br />
|
<label>版本改动:</label><br />
|
||||||
<textarea class="full" style="resize:none;height:200px;" id="changelog"></textarea>
|
<textarea rows="12" class="full" style="width:100%;" id="changelog"></textarea>
|
||||||
<br /><small>请输入此版本与之前版本的差别</small>
|
<br /><small>请输入此版本与之前版本的差别</small>
|
||||||
</p>
|
</p>
|
||||||
<input type="button" onclick="" id="commit_submit" class="btn btn-green big" value="提交"/>
|
<input type="button" onclick="" id="commit_submit" class="btn btn-success pull-right" value="提交"/>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="error"><img src="/images/alert_big_error.png" /><span></span></div>
|
<div class="error"><img src="/images/alert_big_error.png" /><span></span></div>
|
||||||
|
|
Loading…
Reference in New Issue