Files
DzzOffice/dzz/orguser/template/main.htm
2024-07-27 10:41:59 +08:00

87 lines
3.5 KiB
HTML

<!--{template common/header_simple_start}-->
<link href="static/jstree/themes/default/style.min.css?{VERHASH}" rel="stylesheet" media="all">
<link rel="stylesheet" type="text/css" href="static/lyear/js/bootstrap-lyear-select/bootstrap-lyear-select.css?{VERHASH}">
<link href="{MOD_PATH}/images/orguser.css?{VERHASH}" rel="stylesheet" media="all">
<script src="{MOD_PATH}/scripts/orguser.js?{VERHASH}"></script>
<script type="text/javascript">
var selorg={};
<!--{if $openarr}-->
selorg.openarr=$openarr;
<!--{/if}-->
selorg.add=function(ctrlid,vals){
if(vals[0].orgid=='other') vals[0].path='{lang please_select_a_organization_or_department}';
jQuery('#'+ctrlid+'_Menu').html(vals[0].path+' ');
jQuery('#sel_'+ctrlid).val(vals[0].orgid).trigger('change');
}
</script>
<!--{template common/header_simple_end}-->
<!--{template commer_header}-->
<div class="bs-container clearfix">
<div class="bs-left-container clearfix">
<!--{template tree}-->
</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-content clearfix">
<div id="orguser_container" class="orguser-container">
</div>
</div>
</div>
<div id="loading_info" style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;margin:0;padding:0;overflow:hidden; z-index: 11000;background:transparent;display:none;">
<table height="100%" width="100%">
<tbody>
<tr>
<td align="center" valign="middle">
<div class="loading_img">
<div class="loading_process"></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
jQuery('.left-drager').leftDrager_layout(function() {
jQuery('#classtree').css('height', jQuery('.bs-left-container').outerHeight(true) - jQuery('#classtree_top').outerHeight(true));
});
var currentHash = '';
jQuery(document).ready(function(e) {
jQuery('select').lyearSelect();
jQuery(document).on('mouseenter', '.moderators-container .user-item', function() {
jQuery(this).addClass('hover');
});
jQuery(document).on('mouseleave', '.moderators-container .user-item', function() {
jQuery(this).removeClass('hover');
});
var hash = window.location.hash.replace('#', '');
if(hash) {
var hasharr = hash.split('_');
showDetail(hasharr[1], hasharr[0], hasharr[2], hasharr[3]);
} else {
show_guide();
}
});
window.onhashchange = function() { //调转到指定的页面
var hash = window.location.hash.replace('#', '');
if(hash && hash != currentHash) {
var hasharr = hash.split('_');
showDetail(hasharr[1], hasharr[0], hasharr[2], hasharr[3]);
}
}
</script>
<script type="text/javascript" src="static/lyear/js/bootstrap-lyear-select/bootstrap-lyear-select.js?{VERHASH}"></script>
<script type="text/javascript" src="{MOD_PATH}/scripts/jstree.min.js?{VERHASH}"></script>
<script type="text/javascript" src="static/js/jquery.textareaexplander.js?{VERHASH}"></script>
<script type="text/javascript" src="static/jquery_file_upload/jquery.ui.widget.js?{VERHASH}"></script>
<script type="text/javascript" src="static/jquery_file_upload/jquery.iframe-transport.js?{VERHASH}"></script>
<!-- The basic File Upload plugin -->
<script type="text/javascript" src="static/jquery_file_upload/jquery.fileupload.js?{VERHASH}"></script>
<script type="text/javascript" src="static/jquery_file_upload/jquery.fileupload-process.js?{VERHASH}"></script>
<script type="text/javascript" src="static/jquery_file_upload/jquery.fileupload-validate.js?{VERHASH}"></script>
<!--{template common/footer_simple}-->