小胡 77979b6ed5
更新至V2.3.2版本,离线升级的用户需要执行升级程序 (#278)
* 优化百度编辑器,修复编辑器插入的图片不能预览问题

* 处理系统异常时登录无反应问题

* 更新至V2.3.1版本,离线升级的用户需要执行升级程序
2025-01-16 21:17:09 +08:00

95 lines
2.3 KiB
HTML

<!--{template lyear:header_simple_start}-->
<style>
.menu{ width:100px;}
.menu-text{width:70px;}
.thumbnails>li img{
cursor:pointer;
}
.thumbnails>li.Selected .thumbnail {
background:#F7F7F7;
}
.thumbnails .thumbnail{
position:relative;
}
.thumbnails>li .selectbox{
position:absolute;
width:16px;
height:16px;
right:0px;
top:0px;
background:url(checkbox.png) no-repeat;
display:none;
}
.thumbnails>li.hover .selectbox {
display:block;
}
.thumbnails>li.Selected .selectbox{
background:url(selected_folder.png) no-repeat;
display:block;
}
</style>
<!--{template lyear:header_simple_end}-->
<main class="bs-main-container">
<div class="container-fluid">
<!--{template lyear:right_header}-->
<div class="card">
<div class="card-body">
<!--{loop $list $key $value}-->
<h4>$value[header]</h4>
<ul class="thumbnails list-unstyled clearfix p-1">
<!--{loop $value[list] $value1}-->
<li bz="$value1[bz]" data_type="$key" class="text-center float-start p-2 hbg">
<div class="thumbnail"> <img src="dzz/images/default/system/$value1[bz].png" width="100" />
<h5>$value1[name]</h5>
</div>
</li>
<!--{/loop}-->
</ul>
<!--{/loop}-->
</div>
</div>
</div>
</main>
<script type="text/javascript">
function connect_start(bz, type) { //开始云连接
switch(type) {
case 'pan':
url = '{MOD_URL}&bz=' + bz + '&op=oauth';
window.location.href = url;
break;
case 'storage':
url = '{MOD_URL}&bz=' + bz + '&op=oauth';
window.location.href = url;
break;
case 'ftp':
url = '{MOD_URL}&bz=' + bz + '&op=oauth';
window.location.href = url;
break;
case 'disk':
url = '{MOD_URL}&bz=' + bz + '&op=oauth';
window.location.href = url;
break;
default:
url = '{MOD_URL}&bz=' + bz + '&op=oauth';
window.location.href = url;
break;
}
}
jQuery(document).ready(function(e) {
jQuery('.thumbnails li').mouseenter(function() {
jQuery(this).addClass('hover');
}).mouseleave(function() {
jQuery(this).removeClass('hover');
}).click(function() {
var bz = jQuery(this).attr('bz');
var type = jQuery(this).attr('data_type');
connect_start(bz, type);
});
jQuery(document).mousedown(function() {
jQuery('.thumbnails li').removeClass('Selected');
});
});
</script>
<!--{template lyear:footer_simple}-->