index.js 23 KB

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