adminindex.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. var $taskContentInner = null;
  2. var $mainIframe = null;
  3. var tabwidth = 118;
  4. var $loading = null;
  5. var $navWraper = $("#nav-wrapper");
  6. var $content;
  7. $(function () {
  8. $mainIframe = $("#mainiframe");
  9. $content = $("#content");
  10. $loading = $("#loading");
  11. var headerHeight = 48;
  12. $content.height($(window).height() - headerHeight);
  13. $navWraper.height($(window).height() - 48 - 40);
  14. $navWraper.css("overflow", "auto");
  15. $(window).resize(function () {
  16. $navWraper.height($(window).height() - 48 - 40);
  17. $content.height($(window).height() - headerHeight);
  18. calcTaskContentWidth();
  19. });
  20. $("#content iframe").load(function () {
  21. $loading.hide();
  22. });
  23. $taskContentInner = $("#task-content-inner");
  24. $("#task-content-inner").on("click", "li", function () {
  25. openapp($(this).attr("app-url"), $(this).attr("app-id"), $(this).attr("app-name"));
  26. return false;
  27. });
  28. $("#task-content-inner").on("dblclick", "li", function () {
  29. closeapp($(this));
  30. return false;
  31. });
  32. $("#task-content-inner").on("click", ".cmf-component-tabclose", function () {
  33. closeapp($(this).parent());
  34. return false;
  35. });
  36. $("#task-next").click(function () {
  37. var marginLeft = $taskContentInner.css("margin-left");
  38. marginLeft = marginLeft.replace("px", "");
  39. var contentInner = $("#task-content-inner").width();
  40. var contentWidth = $("#task-content").width();
  41. var lessWidth = contentWidth - contentInner;
  42. marginLeft = marginLeft - tabwidth <= lessWidth ? lessWidth : marginLeft - tabwidth;
  43. $taskContentInner.stop();
  44. $taskContentInner.animate({"margin-left": marginLeft + "px"}, 300, 'swing');
  45. });
  46. $("#task-pre").click(function () {
  47. var marginLeft = $taskContentInner.css("margin-left");
  48. marginLeft = parseInt(marginLeft.replace("px", ""));
  49. marginLeft = marginLeft + tabwidth > 0 ? 0 : marginLeft + tabwidth;
  50. // $taskContentInner.css("margin-left", marginLeft + "px");
  51. $taskContentInner.stop();
  52. $taskContentInner.animate({"margin-left": marginLeft + "px"}, 300, 'swing');
  53. });
  54. $("#refresh-wrapper").click(function () {
  55. var $currentIframe = $("#content iframe:visible");
  56. $loading.show();
  57. //$currentIframe.attr("src",$currentIframe.attr("src"));
  58. $currentIframe[0].contentWindow.location.reload();
  59. return false;
  60. });
  61. //一键关闭顶部打开的菜单
  62. $("#close-wrapper").click(function () {
  63. $("#task-content-inner").children().each(function () {
  64. //保留首页。保留当前页面菜单。
  65. if ($(this).attr("app-id") != 0 && $(this).attr("class").indexOf("active") < 0) {
  66. $(this).remove();
  67. }
  68. });
  69. $("#content iframe:hidden").each(function () {
  70. //保留首页iframe
  71. if ($(this).attr("src").indexOf("/admin/main/index") < 0) {
  72. $(this).remove();
  73. }
  74. });
  75. calcTaskContentWidth();
  76. $("#task-next").click();
  77. });
  78. calcTaskContentWidth();
  79. });
  80. function calcTaskContentWidth() {
  81. var width = $("#task-content-inner").width();
  82. if (($(document).width() - 318 - tabwidth - 30 * 2) < width) {
  83. $("#task-content").width($(document).width() - 318 - tabwidth - 30 * 2);
  84. $("#task-next,#task-pre").show();
  85. $('#close-all-tabs-btn').show();
  86. } else {
  87. $("#task-next,#task-pre").hide();
  88. $('#close-all-tabs-btn').hide();
  89. $("#task-content").width(width);
  90. }
  91. }
  92. function close_current_app() {
  93. closeapp($("#task-content-inner .active"));
  94. }
  95. function closeapp($this) {
  96. if (!$this.is(".noclose")) {
  97. $this.prev().click();
  98. $this.remove();
  99. $("#appiframe-" + $this.attr("app-id")).remove();
  100. calcTaskContentWidth();
  101. $("#task-next").click();
  102. }
  103. }
  104. var task_item_tpl = '<li class="cmf-component-tabitem">' +
  105. '<a class="cmf-tabs-item-text"></a>' +
  106. '<span class="cmf-component-tabclose" href="javascript:void(0)" title="点击关闭标签"><span></span><b class="cmf-component-tabclose-icon">×</b></span>' +
  107. '</li>';
  108. var appiframe_tpl = '<iframe style="width:100%;height: 100%;" frameborder="0" class="appiframe"></iframe>';
  109. function openapp(url, appId, appname, refresh) {
  110. var $app = $("#task-content-inner li[app-id='" + appId + "']");
  111. $("#task-content-inner .active").removeClass("active");
  112. if ($app.length == 0) {
  113. var task = $(task_item_tpl).attr("app-id", appId).attr("app-url", url).attr("app-name", appname).addClass("active");
  114. task.find(".cmf-tabs-item-text").html(appname).attr("title", appname);
  115. $taskContentInner.append(task);
  116. $(".appiframe").hide();
  117. $loading.show();
  118. $appiframe = $(appiframe_tpl).attr("src", url).attr("id", "appiframe-" + appId);
  119. $appiframe.appendTo("#content");
  120. $appiframe.load(function () {
  121. var srcLoaded = $appiframe.get(0).contentWindow.location;
  122. if (srcLoaded.pathname == GV.ROOT) {
  123. window.location.reload(true);
  124. }
  125. $loading.hide();
  126. });
  127. calcTaskContentWidth();
  128. } else {
  129. $app.addClass("active");
  130. $(".appiframe").hide();
  131. var $iframe = $("#appiframe-" + appId);
  132. var src = $iframe.get(0).contentWindow.location.href;
  133. src = src.substr(src.indexOf("://") + 3);
  134. if (refresh === true) {//刷新
  135. $loading.show();
  136. $iframe.attr("src", url);
  137. $iframe.load(function () {
  138. var srcLoaded = $iframe.get(0).contentWindow.location;
  139. if (srcLoaded.pathname == GV.ROOT) {
  140. window.location.reload(true);
  141. }
  142. $loading.hide();
  143. });
  144. }
  145. $iframe.show();
  146. }
  147. //url要添加参数。获取最外部的window.修改href
  148. // 支持History API
  149. if (window.history && history.pushState){
  150. var tw = window.top;
  151. var twa =tw.location.href.split("#");
  152. var newUrl = twa[0]+"#"+url;
  153. tw.history.replaceState(null,null,newUrl);
  154. }
  155. var taskContentInner = $("#task-content-inner").width();
  156. var contentWidth = $("#task-content").width();
  157. if (taskContentInner <= contentWidth) { //如果没有开始滚动就不用进行下去了
  158. return;
  159. }
  160. var currentTabIndex = $("#task-content-inner li[app-id='" + appId + "']").index();
  161. var itemOffset = 0;
  162. var currentTabWidth = $("#task-content-inner li[app-id='" + appId + "']").width();
  163. $("#task-content-inner li:lt(" + currentTabIndex + ')').each(function () {
  164. itemOffset = itemOffset + $(this).width();
  165. });
  166. var cssMarginLeft = $taskContentInner.css("margin-left");
  167. cssMarginLeft = parseInt(cssMarginLeft.replace("px", ""));
  168. var marginLeft = currentTabWidth + itemOffset - contentWidth + cssMarginLeft;
  169. if (marginLeft > 0) {
  170. marginLeft = -(currentTabWidth + itemOffset - contentWidth);
  171. $taskContentInner.animate({"margin-left": marginLeft + "px"}, 300, 'swing');
  172. return;
  173. }
  174. if (itemOffset + cssMarginLeft < 0) {
  175. marginLeft = -itemOffset
  176. $taskContentInner.animate({"margin-left": marginLeft + "px"}, 300, 'swing');
  177. return;
  178. }
  179. }