您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

76 行
1.9 KiB

  1. window.master = {
  2. loadcss:function(src){
  3. var head=document.getElementsByTagName("head")[0];
  4. var link = document.createElement('link');
  5. link.href = src;
  6. link.rel = "stylesheet";
  7. link.type = "text/css";
  8. head.appendChild(link);
  9. },
  10. loadModul:function(ev){
  11. var src = $(this).attr("load-href");
  12. if($(".control-show").find('.'+src).length===0){
  13. master.loadcss("css/"+src+".css")
  14. $.ajax({
  15. url:src+".html",
  16. success:function(text){
  17. $(".control-show").append(text);
  18. console.log(text);
  19. $("#x_guanli0").css("color","#000");
  20. },
  21. dataType:"html",
  22. });
  23. $.getScript("js/"+src+".js");
  24. }else{
  25. console.log(1)
  26. }
  27. },
  28. dropDown:function(){
  29. $('.dropdown-toggle').on("click",function(){
  30. $(this).next().slideToggle(200).parent().toggleClass("open");
  31. })
  32. }
  33. //filterData:function(dom,){}
  34. };
  35. $(document).ready(function(){
  36. //$('.loadModul').on('click',master.loadModul);\
  37. var ht_user_id=$.cookie('ht_user_role');
  38. var menu_file = "./leftmenu"+ht_user_id+".html";
  39. // document.getElementById('version_txt').innerText = "V1.1.2";
  40. $.ajax({
  41. url:menu_file,
  42. success:function(data){
  43. $(".control-bar").html(data);
  44. $("#show_html").show();
  45. // master.dropDown();
  46. master.dropDown()
  47. }
  48. })
  49. });
  50. // onClick="showIframe('http://yii2.com/hotel/report/purchase',460,280)"
  51. function showIframe(url){
  52. //添加iframe
  53. $("title").html('酒店业务统计');
  54. var if_w = $(window).width() - $('.control-bar').width();
  55. var if_h = $(window).height();
  56. //allowTransparency='true' 设置背景透明
  57. $('.control-show').empty();
  58. $("<iframe width='" + 1433 + "' height='" + if_h + "' id='YuFrame1' name='YuFrame1' style='position:absolute;z-index:4;' frameborder='no' marginheight='0' marginwidth='0' allowTransparency='true'></iframe>").prependTo('.control-show');
  59. $(".navbar").width(1626);
  60. $("#YuFrame1").attr("src", url)
  61. }