index.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. /**
  2. * 首页方法封装处理
  3. * Copyright (c) 2019 ruoyi
  4. */
  5. layer.config({
  6. extend: 'moon/style.css',
  7. skin: 'layer-ext-moon'
  8. });
  9. var isMobile = $.common.isMobile() || $(window).width() < 769;
  10. var sidebarHeight = isMobile ? '100%' : '96%';
  11. $(function() {
  12. // MetsiMenu
  13. $('#side-menu').metisMenu();
  14. // 固定菜单栏
  15. $('.sidebar-collapse').slimScroll({
  16. height: sidebarHeight,
  17. railOpacity: 0.9,
  18. alwaysVisible: false
  19. });
  20. // 菜单切换
  21. $('.navbar-minimalize').click(function() {
  22. if (isMobile) {
  23. $("body").toggleClass("canvas-menu");
  24. } else {
  25. $("body").toggleClass("mini-navbar");
  26. }
  27. SmoothlyMenu();
  28. });
  29. $('#side-menu>li').click(function() {
  30. if ($('body').hasClass('canvas-menu mini-navbar')) {
  31. NavToggle();
  32. }
  33. });
  34. $('#side-menu>li li a:not(:has(span))').click(function() {
  35. if ($(window).width() < 769) {
  36. NavToggle();
  37. }
  38. });
  39. $('.nav-close').click(NavToggle);
  40. //ios浏览器兼容性处理
  41. if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
  42. $('#content-main').css('overflow-y', 'auto');
  43. }
  44. });
  45. $(window).bind("load resize",
  46. function() {
  47. if ($(this).width() < 769) {
  48. $('body').addClass('canvas-menu');
  49. $("nav .logo").addClass("hide");
  50. $(".slimScrollDiv").css({ "overflow":"hidden" })
  51. }
  52. });
  53. function NavToggle() {
  54. $('.navbar-minimalize').trigger('click');
  55. }
  56. function fixedSidebar() {
  57. $('#side-menu').hide();
  58. $("nav .logo").addClass("hide");
  59. setTimeout(function() {
  60. $('#side-menu').fadeIn(500);
  61. },
  62. 100);
  63. }
  64. function SmoothlyMenu() {
  65. if (isMobile && !$('body').hasClass('canvas-menu')) {
  66. $('.navbar-static-side').fadeIn();
  67. fixedSidebar();
  68. } else if (!isMobile &&!$('body').hasClass('mini-navbar')) {
  69. fixedSidebar();
  70. $("nav .logo").removeClass("hide");
  71. } else if (isMobile && $('body').hasClass('fixed-sidebar')) {
  72. $('.navbar-static-side').fadeOut();
  73. fixedSidebar();
  74. } else if (!isMobile && $('body').hasClass('fixed-sidebar')) {
  75. fixedSidebar();
  76. } else {
  77. $('#side-menu').removeAttr('style');
  78. }
  79. }
  80. /**
  81. * iframe处理
  82. */
  83. $(function() {
  84. //计算元素集合的总宽度
  85. function calSumWidth(elements) {
  86. var width = 0;
  87. $(elements).each(function() {
  88. width += $(this).outerWidth(true);
  89. });
  90. return width;
  91. }
  92. // 激活指定选项卡
  93. function setActiveTab(element) {
  94. if (!$(element).hasClass('active')) {
  95. var currentId = $(element).data('id');
  96. // 显示tab对应的内容区
  97. $('.RuoYi_iframe').each(function() {
  98. if ($(this).data('id') == currentId) {
  99. $(this).show().siblings('.RuoYi_iframe').hide();
  100. }
  101. });
  102. $(element).addClass('active').siblings('.menuTab').removeClass('active');
  103. scrollToTab(element);
  104. }
  105. }
  106. //滚动到指定选项卡
  107. function scrollToTab(element) {
  108. var marginLeftVal = calSumWidth($(element).prevAll()),
  109. marginRightVal = calSumWidth($(element).nextAll());
  110. // 可视区域非tab宽度
  111. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".menuTabs"));
  112. //可视区域tab宽度
  113. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  114. //实际滚动宽度
  115. var scrollVal = 0;
  116. if ($(".page-tabs-content").outerWidth() < visibleWidth) {
  117. scrollVal = 0;
  118. } else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
  119. if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
  120. scrollVal = marginLeftVal;
  121. var tabElement = element;
  122. while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content").outerWidth() - visibleWidth)) {
  123. scrollVal -= $(tabElement).prev().outerWidth();
  124. tabElement = $(tabElement).prev();
  125. }
  126. }
  127. } else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
  128. scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
  129. }
  130. $('.page-tabs-content').animate({
  131. marginLeft: 0 - scrollVal + 'px'
  132. },
  133. "fast");
  134. }
  135. //查看左侧隐藏的选项卡
  136. function scrollTabLeft() {
  137. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  138. // 可视区域非tab宽度
  139. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".menuTabs"));
  140. //可视区域tab宽度
  141. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  142. //实际滚动宽度
  143. var scrollVal = 0;
  144. if (($(".page-tabs-content").width()) < visibleWidth) {
  145. return false;
  146. } else {
  147. var tabElement = $(".menuTab:first");
  148. var offsetVal = 0;
  149. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) { //找到离当前tab最近的元素
  150. offsetVal += $(tabElement).outerWidth(true);
  151. tabElement = $(tabElement).next();
  152. }
  153. offsetVal = 0;
  154. if (calSumWidth($(tabElement).prevAll()) > visibleWidth) {
  155. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  156. offsetVal += $(tabElement).outerWidth(true);
  157. tabElement = $(tabElement).prev();
  158. }
  159. scrollVal = calSumWidth($(tabElement).prevAll());
  160. }
  161. }
  162. $('.page-tabs-content').animate({
  163. marginLeft: 0 - scrollVal + 'px'
  164. },
  165. "fast");
  166. }
  167. //查看右侧隐藏的选项卡
  168. function scrollTabRight() {
  169. var marginLeftVal = Math.abs(parseInt($('.page-tabs-content').css('margin-left')));
  170. // 可视区域非tab宽度
  171. var tabOuterWidth = calSumWidth($(".content-tabs").children().not(".menuTabs"));
  172. //可视区域tab宽度
  173. var visibleWidth = $(".content-tabs").outerWidth(true) - tabOuterWidth;
  174. //实际滚动宽度
  175. var scrollVal = 0;
  176. if ($(".page-tabs-content").width() < visibleWidth) {
  177. return false;
  178. } else {
  179. var tabElement = $(".menuTab:first");
  180. var offsetVal = 0;
  181. while ((offsetVal + $(tabElement).outerWidth(true)) <= marginLeftVal) { //找到离当前tab最近的元素
  182. offsetVal += $(tabElement).outerWidth(true);
  183. tabElement = $(tabElement).next();
  184. }
  185. offsetVal = 0;
  186. while ((offsetVal + $(tabElement).outerWidth(true)) < (visibleWidth) && tabElement.length > 0) {
  187. offsetVal += $(tabElement).outerWidth(true);
  188. tabElement = $(tabElement).next();
  189. }
  190. scrollVal = calSumWidth($(tabElement).prevAll());
  191. if (scrollVal > 0) {
  192. $('.page-tabs-content').animate({
  193. marginLeft: 0 - scrollVal + 'px'
  194. },
  195. "fast");
  196. }
  197. }
  198. }
  199. //通过遍历给菜单项加上data-index属性
  200. $(".menuItem").each(function(index) {
  201. if (!$(this).attr('data-index')) {
  202. $(this).attr('data-index', index);
  203. }
  204. });
  205. function menuItem() {
  206. // 获取标识数据
  207. var dataUrl = $(this).attr('href'),
  208. dataIndex = $(this).data('index'),
  209. menuName = $.trim($(this).text()),
  210. flag = true;
  211. $(".nav ul li, .nav li").removeClass("selected");
  212. $(this).parent("li").addClass("selected");
  213. setIframeUrl($(this).attr("href"));
  214. if (dataUrl == undefined || $.trim(dataUrl).length == 0) return false;
  215. // 选项卡菜单已存在
  216. $('.menuTab').each(function() {
  217. if ($(this).data('id') == dataUrl) {
  218. if (!$(this).hasClass('active')) {
  219. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  220. scrollToTab(this);
  221. // 显示tab对应的内容区
  222. $('.mainContent .RuoYi_iframe').each(function() {
  223. if ($(this).data('id') == dataUrl) {
  224. $(this).show().siblings('.RuoYi_iframe').hide();
  225. return false;
  226. }
  227. });
  228. }
  229. flag = false;
  230. return false;
  231. }
  232. });
  233. // 选项卡菜单不存在
  234. if (flag) {
  235. var str = '<a href="javascript:;" class="active menuTab" data-id="' + dataUrl + '">' + menuName + ' <i class="fa fa-times-circle"></i></a>';
  236. $('.menuTab').removeClass('active');
  237. // 添加选项卡对应的iframe
  238. var str1 = '<iframe class="RuoYi_iframe" name="iframe' + dataIndex + '" width="100%" height="100%" src="' + dataUrl + '" frameborder="0" data-id="' + dataUrl + '" seamless></iframe>';
  239. $('.mainContent').find('iframe.RuoYi_iframe').hide().parents('.mainContent').append(str1);
  240. $.modal.loading("数据加载中,请稍后...");
  241. $('.mainContent iframe:visible').load(function () {
  242. $.modal.closeLoading();
  243. });
  244. // 添加选项卡
  245. $('.menuTabs .page-tabs-content').append(str);
  246. scrollToTab($('.menuTab.active'));
  247. }
  248. return false;
  249. }
  250. function menuBlank() {
  251. // 新窗口打开外网以http://开头,如http://ruoyi.vip
  252. var dataUrl = $(this).attr('href');
  253. window.open(dataUrl);
  254. return false;
  255. }
  256. $('.menuItem').on('click', menuItem);
  257. $('.menuBlank').on('click', menuBlank);
  258. // 关闭选项卡菜单
  259. function closeTab() {
  260. var closeTabId = $(this).parents('.menuTab').data('id');
  261. var currentWidth = $(this).parents('.menuTab').width();
  262. var panelUrl = $(this).parents('.menuTab').data('panel');
  263. // 当前元素处于活动状态
  264. if ($(this).parents('.menuTab').hasClass('active')) {
  265. // 当前元素后面有同辈元素,使后面的一个元素处于活动状态
  266. if ($(this).parents('.menuTab').next('.menuTab').size()) {
  267. var activeId = $(this).parents('.menuTab').next('.menuTab:eq(0)').data('id');
  268. $(this).parents('.menuTab').next('.menuTab:eq(0)').addClass('active');
  269. $('.mainContent .RuoYi_iframe').each(function() {
  270. if ($(this).data('id') == activeId) {
  271. $(this).show().siblings('.RuoYi_iframe').hide();
  272. return false;
  273. }
  274. });
  275. var marginLeftVal = parseInt($('.page-tabs-content').css('margin-left'));
  276. if (marginLeftVal < 0) {
  277. $('.page-tabs-content').animate({
  278. marginLeft: (marginLeftVal + currentWidth) + 'px'
  279. },
  280. "fast");
  281. }
  282. // 移除当前选项卡
  283. $(this).parents('.menuTab').remove();
  284. // 移除tab对应的内容区
  285. $('.mainContent .RuoYi_iframe').each(function() {
  286. if ($(this).data('id') == closeTabId) {
  287. $(this).remove();
  288. return false;
  289. }
  290. });
  291. }
  292. // 当前元素后面没有同辈元素,使当前元素的上一个元素处于活动状态
  293. if ($(this).parents('.menuTab').prev('.menuTab').size()) {
  294. var activeId = $(this).parents('.menuTab').prev('.menuTab:last').data('id');
  295. $(this).parents('.menuTab').prev('.menuTab:last').addClass('active');
  296. $('.mainContent .RuoYi_iframe').each(function() {
  297. if ($(this).data('id') == activeId) {
  298. $(this).show().siblings('.RuoYi_iframe').hide();
  299. return false;
  300. }
  301. });
  302. // 移除当前选项卡
  303. $(this).parents('.menuTab').remove();
  304. // 移除tab对应的内容区
  305. $('.mainContent .RuoYi_iframe').each(function() {
  306. if ($(this).data('id') == closeTabId) {
  307. $(this).remove();
  308. return false;
  309. }
  310. });
  311. if($.common.isNotEmpty(panelUrl)){
  312. $('.menuTab[data-id="' + panelUrl + '"]').addClass('active').siblings('.menuTab').removeClass('active');
  313. $('.mainContent .RuoYi_iframe').each(function() {
  314. if ($(this).data('id') == panelUrl) {
  315. $(this).show().siblings('.RuoYi_iframe').hide();
  316. return false;
  317. }
  318. });
  319. }
  320. }
  321. }
  322. // 当前元素不处于活动状态
  323. else {
  324. // 移除当前选项卡
  325. $(this).parents('.menuTab').remove();
  326. // 移除相应tab对应的内容区
  327. $('.mainContent .RuoYi_iframe').each(function() {
  328. if ($(this).data('id') == closeTabId) {
  329. $(this).remove();
  330. return false;
  331. }
  332. });
  333. }
  334. scrollToTab($('.menuTab.active'));
  335. setIframeUrl($('.page-tabs-content').find('.active').attr('data-id'));
  336. return false;
  337. }
  338. $('.menuTabs').on('click', '.menuTab i', closeTab);
  339. //滚动到已激活的选项卡
  340. function showActiveTab() {
  341. scrollToTab($('.menuTab.active'));
  342. }
  343. $('.tabShowActive').on('click', showActiveTab);
  344. // 点击选项卡菜单
  345. function activeTab() {
  346. if (!$(this).hasClass('active')) {
  347. var currentId = $(this).data('id');
  348. // 显示tab对应的内容区
  349. $('.mainContent .RuoYi_iframe').each(function() {
  350. if ($(this).data('id') == currentId) {
  351. $(this).show().siblings('.RuoYi_iframe').hide();
  352. return false;
  353. }
  354. });
  355. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  356. scrollToTab(this);
  357. }
  358. }
  359. // 点击选项卡菜单
  360. $('.menuTabs').on('click', '.menuTab', activeTab);
  361. // 刷新iframe
  362. function refreshTab() {
  363. var currentId = $('.page-tabs-content').find('.active').attr('data-id');
  364. var target = $('.RuoYi_iframe[data-id="' + currentId + '"]');
  365. var url = target.attr('src');
  366. target.attr('src', url).ready();
  367. }
  368. // 页签全屏
  369. function fullScreenTab() {
  370. var currentId = $('.page-tabs-content').find('.active').attr('data-id');
  371. var target = $('.RuoYi_iframe[data-id="' + currentId + '"]');
  372. target.fullScreen(true);
  373. }
  374. // 关闭当前选项卡
  375. function tabCloseCurrent() {
  376. $('.page-tabs-content').find('.active i').trigger("click");
  377. }
  378. //关闭其他选项卡
  379. function tabCloseOther() {
  380. $('.page-tabs-content').children("[data-id]").not(":first").not(".active").each(function() {
  381. $('.RuoYi_iframe[data-id="' + $(this).data('id') + '"]').remove();
  382. $(this).remove();
  383. });
  384. $('.page-tabs-content').css("margin-left", "0");
  385. setIframeUrl($('.page-tabs-content').find('.active').attr('data-id'));
  386. }
  387. // 关闭全部选项卡
  388. function tabCloseAll() {
  389. $('.page-tabs-content').children("[data-id]").not(":first").each(function() {
  390. $('.RuoYi_iframe[data-id="' + $(this).data('id') + '"]').remove();
  391. $(this).remove();
  392. });
  393. $('.page-tabs-content').children("[data-id]:first").each(function() {
  394. $('.RuoYi_iframe[data-id="' + $(this).data('id') + '"]').show();
  395. $(this).addClass("active");
  396. });
  397. $('.page-tabs-content').css("margin-left", "0");
  398. setIframeUrl($('.page-tabs-content').find('.active').attr('data-id'));
  399. }
  400. // 全屏显示
  401. $('#fullScreen').on('click', function () {
  402. $(document).toggleFullScreen();
  403. });
  404. // 页签刷新按钮
  405. $('.tabReload').on('click', refreshTab);
  406. // 页签全屏按钮
  407. $('.tabFullScreen').on('click', fullScreenTab);
  408. // 双击选项卡全屏显示
  409. $('.menuTabs').on('dblclick', '.menuTab', activeTabMax);
  410. // 左移按扭
  411. $('.tabLeft').on('click', scrollTabLeft);
  412. // 右移按扭
  413. $('.tabRight').on('click', scrollTabRight);
  414. // 关闭当前
  415. $('.tabCloseCurrent').on('click', tabCloseCurrent);
  416. // 关闭其他
  417. $('.tabCloseOther').on('click', tabCloseOther);
  418. // 关闭全部
  419. $('.tabCloseAll').on('click', tabCloseAll);
  420. // tab全屏显示
  421. $('.tabMaxCurrent').on('click', function () {
  422. $('.page-tabs-content').find('.active').trigger("dblclick");
  423. });
  424. // 关闭全屏
  425. $('#ax_close_max').click(function(){
  426. $('#content-main').toggleClass('max');
  427. $('#ax_close_max').hide();
  428. })
  429. // 双击选项卡全屏显示
  430. function activeTabMax() {
  431. $('#content-main').toggleClass('max');
  432. $('#ax_close_max').show();
  433. }
  434. // 设置锚点
  435. function setIframeUrl(href) {
  436. if($.common.equals("history", mode)) {
  437. storage.set('publicPath', href);
  438. } else {
  439. var nowUrl = window.location.href;
  440. var newUrl = nowUrl.substring(0, nowUrl.indexOf("#"));
  441. window.location.href = newUrl + "#" + href;
  442. }
  443. }
  444. $(window).keydown(function(event) {
  445. if (event.keyCode == 27) {
  446. $('#content-main').removeClass('max');
  447. $('#ax_close_max').hide();
  448. }
  449. });
  450. window.onhashchange = function() {
  451. var hash = location.hash;
  452. var url = hash.substring(1, hash.length);
  453. $('a[href$="' + url + '"]').click();
  454. };
  455. // 右键菜单实现
  456. $.contextMenu({
  457. selector: ".menuTab",
  458. trigger: 'right',
  459. autoHide: true,
  460. items: {
  461. "close_current": {
  462. name: "关闭当前",
  463. icon: "fa-close",
  464. callback: function(key, opt) {
  465. opt.$trigger.find('i').trigger("click");
  466. }
  467. },
  468. "close_other": {
  469. name: "关闭其他",
  470. icon: "fa-window-close-o",
  471. callback: function(key, opt) {
  472. setActiveTab(this);
  473. tabCloseOther();
  474. }
  475. },
  476. "close_left": {
  477. name: "关闭左侧",
  478. icon: "fa-reply",
  479. callback: function(key, opt) {
  480. setActiveTab(this);
  481. this.prevAll('.menuTab').not(":last").each(function() {
  482. if ($(this).hasClass('active')) {
  483. setActiveTab(this);
  484. }
  485. $('.RuoYi_iframe[data-id="' + $(this).data('id') + '"]').remove();
  486. $(this).remove();
  487. });
  488. $('.page-tabs-content').css("margin-left", "0");
  489. }
  490. },
  491. "close_right": {
  492. name: "关闭右侧",
  493. icon: "fa-share",
  494. callback: function(key, opt) {
  495. setActiveTab(this);
  496. this.nextAll('.menuTab').each(function() {
  497. $('.menuTab[data-id="' + $(this).data('id') + '"]').remove();
  498. $(this).remove();
  499. });
  500. }
  501. },
  502. "close_all": {
  503. name: "全部关闭",
  504. icon: "fa-window-close",
  505. callback: function(key, opt) {
  506. tabCloseAll();
  507. }
  508. },
  509. "step": "---------",
  510. "full": {
  511. name: "全屏显示",
  512. icon: "fa-arrows-alt",
  513. callback: function(key, opt) {
  514. setActiveTab(this);
  515. var target = $('.RuoYi_iframe[data-id="' + this.data('id') + '"]');
  516. target.fullScreen(true);
  517. }
  518. },
  519. "refresh": {
  520. name: "刷新页面",
  521. icon: "fa-refresh",
  522. callback: function(key, opt) {
  523. setActiveTab(this);
  524. var target = $('.RuoYi_iframe[data-id="' + this.data('id') + '"]');
  525. var url = target.attr('src');
  526. $.modal.loading("数据加载中,请稍后...");
  527. target.attr('src', url).load(function () {
  528. $.modal.closeLoading();
  529. });
  530. }
  531. },
  532. "open": {
  533. name: "新窗口打开",
  534. icon: "fa-link",
  535. callback: function(key, opt) {
  536. var target = $('.RuoYi_iframe[data-id="' + this.data('id') + '"]');
  537. window.open(target.attr('src'));
  538. }
  539. },
  540. }
  541. })
  542. });