Files
DzzOffice/admin/appmarket/template/list.htm

67 lines
2.2 KiB
HTML
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.
<!--{template common/header_simple_start}-->
<!--{template common/header_simple_end}-->
<!--{template common/commer_header}-->
<div class="bs-container clearfix">
<div class="bs-left-container clearfix">
<!--{template left}-->
</div>
<div class="left-drager">
<div class="left-drager-op">
<div class="left-drager-sub"></div>
</div>
</div>
<div class="bs-main-container">
<div class="main-header clearfix">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link <!--{if $op=='cloudappmarket'}-->active<!--{/if}-->" href="{MOD_URL}&op=cloudappmarket">{lang appmarket}</a>
</li>
<li class="nav-item">
<a class="nav-link <!--{if $op=='list'}-->active<!--{/if}-->" href="{MOD_URL}&op=list&do=notinstall">{lang appInLocal}</a>
</li>
</ul>
<div class="button_add_content">
<a href="{MOD_URL}&op=edit&do=add&refer=$refer" id="button_add1" title="{lang add_app}" class="hide">+</a>
<a href="{MOD_URL}&op=cp&do=import&refer=$refer" id="button_add2" class="hide" title="{lang import_type_app}" style="font-size:20px ;"><i class="glyphicon glyphicon-download-alt"></i></a>
<a href="javascript:;" id="button_add" style="z-index: 10;">+</a>
</div>
</div>
<div class="main-content clearfix">
<!--{if $do=='notinstall'}-->
<!--{template list_list_notinstall}-->
<!--{elseif $do=='available'}-->
<!--{template list_list_available}-->
<!--{elseif $do=='updatelist'}-->
<!--{template list_list_upgrade}-->
<!--{/if}-->
</div>
</div>
</div>
<script type="text/javascript">
jQuery('#button_add').click(function(){
if(jQuery("#button_add1").hasClass('hide')){
jQuery("#button_add").html("×");
jQuery("#button_add1").removeClass("hide");
jQuery("#button_add2").removeClass("hide");
jQuery("#button_add1").stop().animate({top:"-124px"},500);
jQuery("#button_add2").stop().animate({top:"-62px"},500);
}else{
jQuery("#button_add").html("");
jQuery("#button_add1").stop().animate({top:"0px"},500);
jQuery("#button_add2").stop().animate({top:"0px"},500);
setTimeout(function(){
jQuery("#button_add1").addClass("hide");
jQuery("#button_add2").addClass("hide");
},500)
}
});
</script>
<!--{template common/footer_simple}-->