index.js 18 KB

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