common.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /**
  2. * 通用方法封装处理
  3. * Copyright (c) 2019 ruoyi
  4. */
  5. var startLayDate;
  6. var endLayDate;
  7. $(function() {
  8. // layer扩展皮肤
  9. if (window.layer !== undefined) {
  10. layer.config({
  11. extend: 'moon/style.css',
  12. skin: 'layer-ext-moon'
  13. });
  14. }
  15. // 回到顶部绑定
  16. if ($.fn.toTop !== undefined) {
  17. $('#scroll-up').toTop();
  18. }
  19. // select2复选框事件绑定
  20. if ($.fn.select2 !== undefined) {
  21. $.fn.select2.defaults.set( "theme", "bootstrap" );
  22. $("select.form-control:not(.noselect2)").each(function () {
  23. $(this).select2().on("change", function () {
  24. $(this).valid();
  25. })
  26. })
  27. }
  28. // iCheck单选框及复选框事件绑定
  29. if ($.fn.iCheck !== undefined) {
  30. $(".check-box:not(.noicheck),.radio-box:not(.noicheck)").each(function() {
  31. $(this).iCheck({
  32. checkboxClass: 'icheckbox-blue',
  33. radioClass: 'iradio-blue',
  34. })
  35. })
  36. }
  37. // 取消回车自动提交表单
  38. $(document).on("keypress", ":input:not(textarea):not([type=submit])", function(event) {
  39. if (event.keyCode == 13) {
  40. event.preventDefault();
  41. }
  42. });
  43. // laydate 时间控件绑定
  44. if ($(".select-time").length > 0) {
  45. layui.use('laydate', function() {
  46. var laydate = layui.laydate;
  47. startLayDate = laydate.render({
  48. elem: '#startTime',
  49. max: $('#endTime').val(),
  50. theme: 'molv',
  51. type: $('#startTime').attr("data-type") || 'date',
  52. trigger: 'click',
  53. done: function(value, date) {
  54. // 结束时间大于开始时间
  55. if (value !== '') {
  56. endLayDate.config.min.year = date.year;
  57. endLayDate.config.min.month = date.month - 1;
  58. endLayDate.config.min.date = date.date;
  59. } else {
  60. endLayDate.config.min.year = '';
  61. endLayDate.config.min.month = '';
  62. endLayDate.config.min.date = '';
  63. }
  64. }
  65. });
  66. endLayDate = laydate.render({
  67. elem: '#endTime',
  68. min: $('#startTime').val(),
  69. theme: 'molv',
  70. type: $('#endTime').attr("data-type") || 'date',
  71. trigger: 'click',
  72. done: function(value, date) {
  73. // 开始时间小于结束时间
  74. if (value !== '') {
  75. startLayDate.config.max.year = date.year;
  76. startLayDate.config.max.month = date.month - 1;
  77. startLayDate.config.max.date = date.date;
  78. } else {
  79. startLayDate.config.max.year = '2099';
  80. startLayDate.config.max.month = '12';
  81. startLayDate.config.max.date = '31';
  82. }
  83. }
  84. });
  85. });
  86. }
  87. // laydate time-input 时间控件绑定
  88. if ($(".time-input").length > 0) {
  89. layui.use('laydate', function () {
  90. var com = layui.laydate;
  91. $(".time-input").each(function (index, item) {
  92. var time = $(item);
  93. // 控制控件外观
  94. var type = time.attr("data-type") || 'date';
  95. // 控制回显格式
  96. var format = time.attr("data-format") || 'yyyy-MM-dd';
  97. // 控制日期控件按钮
  98. var buttons = time.attr("data-btn") || 'clear|now|confirm', newBtnArr = [];
  99. // 日期控件选择完成后回调处理
  100. var callback = time.attr("data-callback") || {};
  101. if (buttons) {
  102. if (buttons.indexOf("|") > 0) {
  103. var btnArr = buttons.split("|"), btnLen = btnArr.length;
  104. for (var j = 0; j < btnLen; j++) {
  105. if ("clear" === btnArr[j] || "now" === btnArr[j] || "confirm" === btnArr[j]) {
  106. newBtnArr.push(btnArr[j]);
  107. }
  108. }
  109. } else {
  110. if ("clear" === buttons || "now" === buttons || "confirm" === buttons) {
  111. newBtnArr.push(buttons);
  112. }
  113. }
  114. } else {
  115. newBtnArr = ['clear', 'now', 'confirm'];
  116. }
  117. com.render({
  118. elem: item,
  119. theme: 'molv',
  120. trigger: 'click',
  121. type: type,
  122. format: format,
  123. btns: newBtnArr,
  124. done: function (value, data) {
  125. if (typeof window[callback] != 'undefined'
  126. && window[callback] instanceof Function) {
  127. window[callback](value, data);
  128. }
  129. }
  130. });
  131. });
  132. });
  133. }
  134. // tree 关键字搜索绑定
  135. if ($("#keyword").length > 0) {
  136. $("#keyword").bind("focus", function focusKey(e) {
  137. if ($("#keyword").hasClass("empty")) {
  138. $("#keyword").removeClass("empty");
  139. }
  140. }).bind("blur", function blurKey(e) {
  141. if ($("#keyword").val() === "") {
  142. $("#keyword").addClass("empty");
  143. }
  144. $.tree.searchNode(e);
  145. }).bind("input propertychange", $.tree.searchNode);
  146. }
  147. // tree表格树 展开/折叠
  148. var expandFlag;
  149. $("#expandAllBtn").click(function() {
  150. var dataExpand = $.common.isEmpty(table.options.expandAll) ? true : table.options.expandAll;
  151. expandFlag = $.common.isEmpty(expandFlag) ? dataExpand : expandFlag;
  152. if (!expandFlag) {
  153. $.bttTable.bootstrapTreeTable('expandAll');
  154. } else {
  155. $.bttTable.bootstrapTreeTable('collapseAll');
  156. }
  157. expandFlag = expandFlag ? false: true;
  158. })
  159. // 按下ESC按钮关闭弹层
  160. $('body', document).on('keyup', function(e) {
  161. if (e.which === 27) {
  162. $.modal.closeAll();
  163. }
  164. });
  165. });
  166. (function ($) {
  167. 'use strict';
  168. $.fn.toTop = function(opt) {
  169. var elem = this;
  170. var win = (opt && opt.hasOwnProperty('win')) ? opt.win : $(window);
  171. var doc = (opt && opt.hasOwnProperty('doc')) ? opt.doc : $('html, body');
  172. var options = $.extend({
  173. autohide: true,
  174. offset: 50,
  175. speed: 500,
  176. position: true,
  177. right: 15,
  178. bottom: 5
  179. }, opt);
  180. elem.css({
  181. 'cursor': 'pointer'
  182. });
  183. if (options.autohide) {
  184. elem.css('display', 'none');
  185. }
  186. if (options.position) {
  187. elem.css({
  188. 'position': 'fixed',
  189. 'right': options.right,
  190. 'bottom': options.bottom,
  191. });
  192. }
  193. elem.click(function() {
  194. doc.animate({
  195. scrollTop: 0
  196. }, options.speed);
  197. });
  198. win.scroll(function() {
  199. var scrolling = win.scrollTop();
  200. if (options.autohide) {
  201. if (scrolling > options.offset) {
  202. elem.fadeIn(options.speed);
  203. } else elem.fadeOut(options.speed);
  204. }
  205. });
  206. };
  207. })(jQuery);
  208. /** 刷新选项卡 */
  209. var refreshItem = function(){
  210. var topWindow = $(window.parent.document);
  211. var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-id');
  212. var target = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow);
  213. var url = target.attr('src');
  214. target.attr('src', url).ready();
  215. }
  216. /** 关闭选项卡 */
  217. var closeItem = function(dataId){
  218. var topWindow = $(window.parent.document);
  219. if($.common.isNotEmpty(dataId)){
  220. window.parent.$.modal.closeLoading();
  221. // 根据dataId关闭指定选项卡
  222. $('.menuTab[data-id="' + dataId + '"]', topWindow).remove();
  223. // 移除相应tab对应的内容区
  224. $('.mainContent .RuoYi_iframe[data-id="' + dataId + '"]', topWindow).remove();
  225. return;
  226. }
  227. var panelUrl = window.frameElement.getAttribute('data-panel');
  228. $('.page-tabs-content .active i', topWindow).click();
  229. if($.common.isNotEmpty(panelUrl)){
  230. $('.menuTab[data-id="' + panelUrl + '"]', topWindow).addClass('active').siblings('.menuTab').removeClass('active');
  231. $('.mainContent .RuoYi_iframe', topWindow).each(function() {
  232. if ($(this).data('id') == panelUrl) {
  233. $(this).show().siblings('.RuoYi_iframe').hide();
  234. return false;
  235. }
  236. });
  237. }
  238. }
  239. /** 创建选项卡 */
  240. function createMenuItem(dataUrl, menuName, isRefresh) {
  241. var panelUrl = window.frameElement.getAttribute('data-id'),
  242. dataIndex = $.common.random(1, 100),
  243. flag = true;
  244. if (dataUrl == undefined || $.trim(dataUrl).length == 0) return false;
  245. var topWindow = $(window.parent.document);
  246. // 选项卡菜单已存在
  247. $('.menuTab', topWindow).each(function() {
  248. if ($(this).data('id') == dataUrl) {
  249. if (!$(this).hasClass('active')) {
  250. $(this).addClass('active').siblings('.menuTab').removeClass('active');
  251. scrollToTab(this);
  252. $('.page-tabs-content').animate({ marginLeft: ""}, "fast");
  253. // 显示tab对应的内容区
  254. $('.mainContent .RuoYi_iframe', topWindow).each(function() {
  255. if ($(this).data('id') == dataUrl) {
  256. $(this).show().siblings('.RuoYi_iframe').hide();
  257. return false;
  258. }
  259. });
  260. }
  261. if (isRefresh) {
  262. refreshTab();
  263. }
  264. flag = false;
  265. return false;
  266. }
  267. });
  268. // 选项卡菜单不存在
  269. if (flag) {
  270. var str = '<a href="javascript:;" class="active menuTab noactive" data-id="' + dataUrl + '" data-panel="' + panelUrl + '">' + menuName + ' <i class="fa fa-times-circle"></i></a>';
  271. $('.menuTab', topWindow).removeClass('active');
  272. // 添加选项卡对应的iframe
  273. var str1 = '<iframe class="RuoYi_iframe" name="iframe' + dataIndex + '" width="100%" height="100%" src="' + dataUrl + '" frameborder="0" data-id="' + dataUrl + '" data-panel="' + panelUrl + '" seamless></iframe>';
  274. $('.mainContent', topWindow).find('iframe.RuoYi_iframe').hide().parents('.mainContent').append(str1);
  275. window.parent.$.modal.loading("数据加载中,请稍后...");
  276. $('.mainContent iframe:visible', topWindow).load(function () {
  277. window.parent.$.modal.closeLoading();
  278. });
  279. // 添加选项卡
  280. $('.menuTabs .page-tabs-content', topWindow).append(str);
  281. scrollToTab($('.menuTab.active', topWindow));
  282. }
  283. return false;
  284. }
  285. // 刷新iframe
  286. function refreshTab() {
  287. var topWindow = $(window.parent.document);
  288. var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-id');
  289. var target = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow);
  290. var url = target.attr('src');
  291. target.attr('src', url).ready();
  292. }
  293. // 滚动到指定选项卡
  294. function scrollToTab(element) {
  295. var topWindow = $(window.parent.document);
  296. var marginLeftVal = calSumWidth($(element).prevAll()),
  297. marginRightVal = calSumWidth($(element).nextAll());
  298. // 可视区域非tab宽度
  299. var tabOuterWidth = calSumWidth($(".content-tabs", topWindow).children().not(".menuTabs"));
  300. //可视区域tab宽度
  301. var visibleWidth = $(".content-tabs", topWindow).outerWidth(true) - tabOuterWidth;
  302. //实际滚动宽度
  303. var scrollVal = 0;
  304. if ($(".page-tabs-content", topWindow).outerWidth() < visibleWidth) {
  305. scrollVal = 0;
  306. } else if (marginRightVal <= (visibleWidth - $(element).outerWidth(true) - $(element).next().outerWidth(true))) {
  307. if ((visibleWidth - $(element).next().outerWidth(true)) > marginRightVal) {
  308. scrollVal = marginLeftVal;
  309. var tabElement = element;
  310. while ((scrollVal - $(tabElement).outerWidth()) > ($(".page-tabs-content", topWindow).outerWidth() - visibleWidth)) {
  311. scrollVal -= $(tabElement).prev().outerWidth();
  312. tabElement = $(tabElement).prev();
  313. }
  314. }
  315. } else if (marginLeftVal > (visibleWidth - $(element).outerWidth(true) - $(element).prev().outerWidth(true))) {
  316. scrollVal = marginLeftVal - $(element).prev().outerWidth(true);
  317. }
  318. $('.page-tabs-content', topWindow).animate({ marginLeft: 0 - scrollVal + 'px' }, "fast");
  319. }
  320. // 计算元素集合的总宽度
  321. function calSumWidth(elements) {
  322. var width = 0;
  323. $(elements).each(function() {
  324. width += $(this).outerWidth(true);
  325. });
  326. return width;
  327. }
  328. // 返回当前激活的Tab页面关联的iframe的Windows对象
  329. function activeWindow() {
  330. var topWindow = $(window.parent.document);
  331. var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-id');
  332. var activeWindow = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow)[0].contentWindow;
  333. return activeWindow;
  334. }
  335. /** 密码规则范围验证 */
  336. function checkpwd(chrtype, password) {
  337. if (chrtype == 1) {
  338. if(!$.common.numValid(password)){
  339. $.modal.alertWarning("密码只能为0-9数字");
  340. return false;
  341. }
  342. } else if (chrtype == 2) {
  343. if(!$.common.enValid(password)){
  344. $.modal.alertWarning("密码只能为a-z和A-Z字母");
  345. return false;
  346. }
  347. } else if (chrtype == 3) {
  348. if(!$.common.enNumValid(password)){
  349. $.modal.alertWarning("密码必须包含字母以及数字");
  350. return false;
  351. }
  352. } else if (chrtype == 4) {
  353. if(!$.common.charValid(password)){
  354. $.modal.alertWarning("密码必须包含字母、数字、以及特殊符号<font color='red'>~!@#$%^&*()-=_+</font>");
  355. return false;
  356. }
  357. }
  358. return true;
  359. }
  360. // 日志打印封装处理
  361. var log = {
  362. log: function(msg) {
  363. console.log(msg);
  364. },
  365. info: function(msg) {
  366. console.info(msg);
  367. },
  368. warn: function(msg) {
  369. console.warn(msg);
  370. },
  371. error: function(msg) {
  372. console.error(msg);
  373. }
  374. };
  375. // 本地缓存处理
  376. var storage = {
  377. set: function(key, value) {
  378. window.localStorage.setItem(key, value);
  379. },
  380. get: function(key) {
  381. return window.localStorage.getItem(key);
  382. },
  383. remove: function(key) {
  384. window.localStorage.removeItem(key);
  385. },
  386. clear: function() {
  387. window.localStorage.clear();
  388. }
  389. };
  390. // 主子表操作封装处理
  391. var sub = {
  392. editColumn: function() {
  393. var dataColumns = [];
  394. for (var columnIndex = 0; columnIndex < table.options.columns.length; columnIndex++) {
  395. if (table.options.columns[columnIndex].visible != false) {
  396. dataColumns.push(table.options.columns[columnIndex]);
  397. }
  398. }
  399. var params = new Array();
  400. var data = $("#" + table.options.id).bootstrapTable('getData');
  401. var count = data.length;
  402. for (var dataIndex = 0; dataIndex < count; dataIndex++) {
  403. var columns = $('#' + table.options.id + ' tr[data-index="' + dataIndex + '"] td');
  404. var obj = new Object();
  405. for (var i = 0; i < columns.length; i++) {
  406. var inputValue = $(columns[i]).find('input');
  407. var selectValue = $(columns[i]).find('select');
  408. var textareaValue = $(columns[i]).find('textarea');
  409. var key = dataColumns[i].field;
  410. if ($.common.isNotEmpty(inputValue.val())) {
  411. obj[key] = inputValue.val();
  412. } else if ($.common.isNotEmpty(selectValue.val())) {
  413. obj[key] = selectValue.val();
  414. } else if ($.common.isNotEmpty(textareaValue.val())) {
  415. obj[key] = textareaValue.val();
  416. } else {
  417. obj[key] = "";
  418. }
  419. }
  420. var item = data[dataIndex];
  421. var extendObj = $.extend({}, item, obj);
  422. params.push({ index: dataIndex, row: extendObj });
  423. }
  424. $("#" + table.options.id).bootstrapTable("updateRow", params);
  425. },
  426. delColumn: function(column) {
  427. sub.editColumn();
  428. var subColumn = $.common.isEmpty(column) ? "index" : column;
  429. var ids = $.table.selectColumns(subColumn);
  430. if (ids.length == 0) {
  431. $.modal.alertWarning("请至少选择一条记录");
  432. return;
  433. }
  434. $("#" + table.options.id).bootstrapTable('remove', { field: subColumn, values: ids });
  435. },
  436. addColumn: function(row, tableId) {
  437. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  438. table.set(currentId);
  439. var count = $("#" + currentId).bootstrapTable('getData').length;
  440. sub.editColumn();
  441. $("#" + currentId).bootstrapTable('insertRow', {
  442. index: count + 1,
  443. row: row
  444. });
  445. }
  446. };
  447. // 动态加载css文件
  448. function loadCss(file, headElem) {
  449. var link = document.createElement('link');
  450. link.href = file;
  451. link.rel = 'stylesheet';
  452. link.type = 'text/css';
  453. if (headElem) headElem.appendChild(link);
  454. else document.getElementsByTagName('head')[0].appendChild(link);
  455. }
  456. // 动态加载js文件
  457. function loadJs(file, headElem) {
  458. var script = document.createElement('script');
  459. script.src = file;
  460. script.type = 'text/javascript';
  461. if (headElem) headElem.appendChild(script);
  462. else document.getElementsByTagName('head')[0].appendChild(script);
  463. }
  464. /** 设置全局ajax处理 */
  465. $.ajaxSetup({
  466. complete: function(XMLHttpRequest, textStatus) {
  467. if (textStatus == 'timeout') {
  468. $.modal.alertWarning("服务器超时,请稍后再试!");
  469. $.modal.enable();
  470. $.modal.closeLoading();
  471. } else if (textStatus == "parsererror" || textStatus == "error") {
  472. $.modal.alertWarning("服务器错误,请联系管理员!");
  473. $.modal.enable();
  474. $.modal.closeLoading();
  475. }
  476. }
  477. });