common.js 17 KB

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