contabs.min.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. $(function() {
  2. function f(l) {
  3. var k = 0;
  4. $(l).each(function() {
  5. k += $(this).outerWidth(true)
  6. });
  7. return k
  8. }
  9. function g(n) {
  10. var o = f($(n).prevAll())
  11. , q = f($(n).nextAll());
  12. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  13. var k = $(".content-tabs").outerWidth(true) - l;
  14. var p = 0;
  15. if ($(".page-tabs-content").outerWidth() < k) {
  16. p = 0
  17. } else {
  18. if (q <= (k - $(n).outerWidth(true) - $(n).next().outerWidth(true))) {
  19. if ((k - $(n).next().outerWidth(true)) > q) {
  20. p = o;
  21. var m = n;
  22. while ((p - $(m).outerWidth()) > ($(".page-tabs-content").outerWidth() - k)) {
  23. p -= $(m).prev().outerWidth();
  24. m = $(m).prev()
  25. }
  26. }
  27. } else {
  28. if (o > (k - $(n).outerWidth(true) - $(n).prev().outerWidth(true))) {
  29. p = o - $(n).prev().outerWidth(true)
  30. }
  31. }
  32. }
  33. $(".page-tabs-content").animate({
  34. marginLeft: 0 - p + "px"
  35. }, "fast")
  36. }
  37. function a() {
  38. var o = Math.abs(parseInt($(".page-tabs-content").css("margin-left")));
  39. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  40. var k = $(".content-tabs").outerWidth(true) - l;
  41. var p = 0;
  42. if ($(".page-tabs-content").width() < k) {
  43. return false
  44. } else {
  45. var m = $(".J_menuTab:first");
  46. var n = 0;
  47. while ((n + $(m).outerWidth(true)) <= o) {
  48. n += $(m).outerWidth(true);
  49. m = $(m).next()
  50. }
  51. n = 0;
  52. if (f($(m).prevAll()) > k) {
  53. while ((n + $(m).outerWidth(true)) < (k) && m.length > 0) {
  54. n += $(m).outerWidth(true);
  55. m = $(m).prev()
  56. }
  57. p = f($(m).prevAll())
  58. }
  59. }
  60. $(".page-tabs-content").animate({
  61. marginLeft: 0 - p + "px"
  62. }, "fast")
  63. }
  64. function b() {
  65. var o = Math.abs(parseInt($(".page-tabs-content").css("margin-left")));
  66. var l = f($(".content-tabs").children().not(".J_menuTabs"));
  67. var k = $(".content-tabs").outerWidth(true) - l;
  68. var p = 0;
  69. if ($(".page-tabs-content").width() < k) {
  70. return false
  71. } else {
  72. var m = $(".J_menuTab:first");
  73. var n = 0;
  74. while ((n + $(m).outerWidth(true)) <= o) {
  75. n += $(m).outerWidth(true);
  76. m = $(m).next()
  77. }
  78. n = 0;
  79. while ((n + $(m).outerWidth(true)) < (k) && m.length > 0) {
  80. n += $(m).outerWidth(true);
  81. m = $(m).next()
  82. }
  83. p = f($(m).prevAll());
  84. if (p > 0) {
  85. $(".page-tabs-content").animate({
  86. marginLeft: 0 - p + "px"
  87. }, "fast")
  88. }
  89. }
  90. }
  91. $(".J_menuItem").each(function(k) {
  92. if (!$(this).attr("data-index")) {
  93. $(this).attr("data-index", k)
  94. }
  95. });
  96. function c() {
  97. var o = $(this).attr("href")
  98. , m = $(this).data("index")
  99. , l = $.trim($(this).text())
  100. , k = true;
  101. if (o == undefined || $.trim(o).length == 0) {
  102. return false
  103. }
  104. $(".J_menuTab").each(function() {
  105. if ($(this).data("id") == o) {
  106. if (!$(this).hasClass("active")) {
  107. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  108. g(this);
  109. $(".J_mainContent .J_iframe").each(function() {
  110. if ($(this).data("id") == o) {
  111. $(this).show().siblings(".J_iframe").hide();
  112. return false
  113. }
  114. })
  115. }
  116. k = false;
  117. return false
  118. }
  119. });
  120. if (k) {
  121. // TODO 删除已存在的iframe
  122. $(".J_mainContent .J_iframe:not(:first)").remove()
  123. GlobalEventBus.$emit("reset-nav-breadcrumb")
  124. setTimeout(function() {
  125. var p = '<a href="javascript:;" class="active J_menuTab" data-id="' + o + '">' + l + ' <i class="fa fa-times-circle"></i></a>';
  126. $(".J_menuTab").removeClass("active");
  127. var winH = $('.J_mainContent').height()
  128. var pageTitEle = document.getElementById("pageTit")
  129. var pageTitH = pageTitEle && pageTitEle.clientHeight || 0
  130. var $n = $('<iframe class="J_iframe" name="iframe' + m + '" width="100%" height="'+(winH-pageTitH)+'px" src="' + o + '" frameborder="0" data-id="' + o + '" seamless></iframe>');
  131. $(".J_mainContent").find("iframe.J_iframe").hide().parents(".J_mainContent").append($n);
  132. $(".J_menuTabs .page-tabs-content").append(p);
  133. g($(".J_menuTab.active"))
  134. window.onresize = function() {
  135. var w = $('.J_mainContent').height()
  136. var ptEle = document.getElementById("pageTit")
  137. var ptH = ptEle && ptEle.clientHeight || 0
  138. $n.height(w - ptH)
  139. }
  140. }, 100)
  141. }
  142. return false
  143. }
  144. $(document.body).on("click",".J_menuItem", c);
  145. function h() {
  146. var m = $(this).parents(".J_menuTab").data("id");
  147. var l = $(this).parents(".J_menuTab").width();
  148. if ($(this).parents(".J_menuTab").hasClass("active")) {
  149. if ($(this).parents(".J_menuTab").next(".J_menuTab").size()) {
  150. var k = $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").data("id");
  151. $(this).parents(".J_menuTab").next(".J_menuTab:eq(0)").addClass("active");
  152. $(".J_mainContent .J_iframe").each(function() {
  153. if ($(this).data("id") == k) {
  154. $(this).show().siblings(".J_iframe").hide();
  155. return false
  156. }
  157. });
  158. var n = parseInt($(".page-tabs-content").css("margin-left"));
  159. if (n < 0) {
  160. $(".page-tabs-content").animate({
  161. marginLeft: (n + l) + "px"
  162. }, "fast")
  163. }
  164. $(this).parents(".J_menuTab").remove();
  165. $(".J_mainContent .J_iframe").each(function() {
  166. if ($(this).data("id") == m) {
  167. $(this).remove();
  168. return false
  169. }
  170. })
  171. }
  172. if ($(this).parents(".J_menuTab").prev(".J_menuTab").size()) {
  173. var k = $(this).parents(".J_menuTab").prev(".J_menuTab:last").data("id");
  174. $(this).parents(".J_menuTab").prev(".J_menuTab:last").addClass("active");
  175. $(".J_mainContent .J_iframe").each(function() {
  176. if ($(this).data("id") == k) {
  177. $(this).show().siblings(".J_iframe").hide();
  178. return false
  179. }
  180. });
  181. $(this).parents(".J_menuTab").remove();
  182. $(".J_mainContent .J_iframe").each(function() {
  183. if ($(this).data("id") == m) {
  184. $(this).remove();
  185. return false
  186. }
  187. })
  188. }
  189. } else {
  190. $(this).parents(".J_menuTab").remove();
  191. $(".J_mainContent .J_iframe").each(function() {
  192. if ($(this).data("id") == m) {
  193. $(this).remove();
  194. return false
  195. }
  196. });
  197. g($(".J_menuTab.active"))
  198. }
  199. return false
  200. }
  201. $(".J_menuTabs").on("click", ".J_menuTab i", h);
  202. function i() {
  203. $(".page-tabs-content").children("[data-id]").not(":first").not(".active").each(function() {
  204. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  205. $(this).remove()
  206. });
  207. $(".page-tabs-content").css("margin-left", "0")
  208. }
  209. $(".J_tabCloseOther").on("click", i);
  210. function j() {
  211. g($(".J_menuTab.active"))
  212. }
  213. $(".J_tabShowActive").on("click", j);
  214. function e() {
  215. if (!$(this).hasClass("active")) {
  216. var k = $(this).data("id");
  217. $(".J_mainContent .J_iframe").each(function() {
  218. if ($(this).data("id") == k) {
  219. $(this).show().siblings(".J_iframe").hide();
  220. return false
  221. }
  222. });
  223. $(this).addClass("active").siblings(".J_menuTab").removeClass("active");
  224. g(this)
  225. }
  226. }
  227. $(".J_menuTabs").on("click", ".J_menuTab", e);
  228. function d() {
  229. var l = $('.J_iframe[data-id="' + $(this).data("id") + '"]');
  230. var k = l.attr("src")
  231. }
  232. $(".J_menuTabs").on("dblclick", ".J_menuTab", d);
  233. $(".J_tabLeft").on("click", a);
  234. $(".J_tabRight").on("click", b);
  235. $(".J_tabCloseAll").on("click", function() {
  236. $(".page-tabs-content").children("[data-id]").not(":first").each(function() {
  237. $('.J_iframe[data-id="' + $(this).data("id") + '"]').remove();
  238. $(this).remove()
  239. });
  240. $(".page-tabs-content").children("[data-id]:first").each(function() {
  241. $('.J_iframe[data-id="' + $(this).data("id") + '"]').show();
  242. $(this).addClass("active")
  243. });
  244. $(".page-tabs-content").css("margin-left", "0")
  245. })
  246. });