Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admincp.js 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. $(function() {
  2. //使用title内容作为tooltip提示文字
  3. $(document).tooltip({
  4. track: true
  5. });
  6. // 侧边导航展示形式切换
  7. $('#foldSidebar > i, #foldSidebar2').click(function(){
  8. var that = $('#foldSidebar').find('i');
  9. if ($('.admincp-container').hasClass('unfold')) {
  10. $(that).addClass('fa-in').removeClass('fa-out');
  11. $('.sub-menu').removeAttr('style');
  12. $('.admincp-container').addClass('fold').removeClass('unfold');
  13. } else {
  14. $(that).addClass('fa-out').removeClass('fa-in');
  15. $('.nav-tabs').each(function(i){
  16. $(that).find('dl').each(function(i){
  17. $(that).find('dd').css('top', (-70)*i + 'px');
  18. if ($(that).hasClass('active')) {
  19. $(that).find('dd').show();
  20. }
  21. });
  22. });
  23. $('.admincp-container').addClass('unfold').removeClass('fold');
  24. }
  25. });
  26. // 侧边导航三级级菜单点击
  27. $('.sub-menu').on('click','a',function(){
  28. if ($(this).attr('data-param') != undefined) {
  29. openItem($(this).attr('data-param'), $(this).attr('data-menu_id'), $(this).attr('data-click'), $(this).attr('data-click_url'));
  30. }
  31. });
  32. if ($.cookie('workspaceParam') == null) {
  33. // 默认选择第一个菜单
  34. // $('.nc-module-menu').find('li:first > a').click();
  35. openItem('Index|welcome', '', '');
  36. } else {
  37. // openItem($.cookie('workspaceParam'));
  38. openItem('Index|welcome', '', '');
  39. }
  40. });
  41. // 点击菜单,iframe页面跳转
  42. function openItem(param, menu_id, click, click_url) {
  43. $('.sub-menu').find('li').removeClass('active');
  44. data_str = param.split('|');
  45. $this = $('div[id^="admincpNavTabs_"]').find('a[data-param="' + param + '"]');
  46. if ($('.admincp-container').hasClass('unfold')) {
  47. $this.parents('dd:first').show();
  48. }
  49. $('li[data-param="' + data_str[0] + '"]').addClass('active');
  50. $this.parent().addClass('active').parents('dl:first').addClass('active').parents('div:first').show();
  51. if (click != '' && click != undefined && click != 'undefined') {
  52. var src = click_url;
  53. } else {
  54. var src = eyou_basefile + '?m='+module_name+'&c=' + data_str[0] + '&a=' + data_str[1];
  55. }
  56. if (data_str.length%2 == 0) {
  57. for (var i = 2; i < data_str.length; i++) {
  58. if (i%2 == 0) {
  59. src = src + '&';
  60. } else {
  61. src = src + '=';
  62. }
  63. src = src + data_str[i];
  64. }
  65. }
  66. var lang = $.cookie('admin_lang');
  67. if (!lang) lang = __lang__;
  68. if (false != $.inArray('lang', data_str) && $.trim(lang) != '') {
  69. src = src + '&lang=' + lang;
  70. }
  71. //商城样式特殊处理
  72. var conceal_key = data_str.indexOf('conceal');
  73. if(conceal_key >= 0 && data_str.hasOwnProperty(conceal_key+1)){ //存在下标
  74. sessionStorage.setItem('conceal_1649209614', data_str[conceal_key+1]); //sessionStorage保存点击状态
  75. }else{
  76. sessionStorage.setItem('conceal_1649209614', 0);
  77. }
  78. //栏目入口内页没有mt20(class)
  79. var mt20_key = data_str.indexOf('mt20');
  80. if(mt20_key >= 0 && data_str.hasOwnProperty(mt20_key+1)){ //存在下标
  81. sessionStorage.setItem('mt20_1649209614', data_str[mt20_key+1]); //sessionStorage保存点击状态
  82. }else{
  83. sessionStorage.setItem('mt20_1649209614', 0);
  84. }
  85. $('#workspace').attr('src', src);
  86. $.cookie('workspaceParam', data_str[1] + '|' + data_str[0], { expires: 1 ,path:"/"});
  87. // 循环清空选中的标记的Class
  88. var SubMenuA = $('.sub-menu a');
  89. SubMenuA.each(function(){
  90. // 其他参数处理
  91. $(this).removeClass('on');
  92. // 特殊参数处理
  93. $(this).parent().siblings().removeClass('on');
  94. });
  95. // 拼装ID获取到点击的ID
  96. // var ColorId = data_str.join('_');
  97. var ColorId = data_str[0]+"_"+data_str[1]+"_"+ menu_id;
  98. if (0 == $('.'+ColorId).attr('data-child')) {
  99. // 其他参数选项
  100. $('.'+ColorId).addClass('on');
  101. }else{
  102. // 特殊参数处理
  103. $('.'+ColorId).parent().siblings().addClass('on');
  104. }
  105. }
  106. /* 显示Ajax表单 */
  107. function ajax_form(id, title, url, width, model)
  108. {
  109. if (!width) width = 480;
  110. if (!model) model = 1;
  111. var d = DialogManager.create(id);
  112. d.setTitle(title);
  113. d.setContents('ajax', url);
  114. d.setWidth(width);
  115. d.show('center',model);
  116. return d;
  117. }