ry-ui.js 82 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738
  1. /**
  2. * 通用js方法封装处理
  3. * Copyright (c) 2019 ruoyi
  4. */
  5. // 当前table相关信息
  6. var table = {
  7. config: {},
  8. // 当前实例配置
  9. options: {},
  10. // 设置实例配置
  11. set: function(id) {
  12. if($.common.getLength(table.config) > 1) {
  13. var tableId = $.common.isEmpty(id) ? $(event.currentTarget).parents(".bootstrap-table").find("table.table").attr("id") : id;
  14. if ($.common.isNotEmpty(tableId)) {
  15. table.options = table.get(tableId);
  16. }
  17. }
  18. },
  19. // 获取实例配置
  20. get: function(id) {
  21. return table.config[id];
  22. },
  23. // 记住选择实例组
  24. rememberSelecteds: {},
  25. // 记住选择ID组
  26. rememberSelectedIds: {}
  27. };
  28. (function ($) {
  29. $.extend({
  30. _tree: {},
  31. bttTable: {},
  32. // 表格封装处理
  33. table: {
  34. // 初始化表格参数
  35. init: function(options) {
  36. var defaults = {
  37. id: "bootstrap-table",
  38. type: 0, // 0 代表bootstrapTable 1代表bootstrapTreeTable
  39. method: 'post',
  40. height: undefined,
  41. sidePagination: "server",
  42. sortName: undefined,
  43. sortOrder: "asc",
  44. pagination: true,
  45. paginationLoop: false,
  46. pageSize: 10,
  47. pageNumber: 1,
  48. pageList: [10, 25, 50],
  49. toolbar: "toolbar",
  50. loadingFontSize: 13,
  51. striped: false,
  52. escape: false,
  53. firstLoad: true,
  54. showFooter: false,
  55. search: false,
  56. showSearch: true,
  57. showPageGo: false,
  58. showRefresh: true,
  59. showColumns: true,
  60. showToggle: true,
  61. showExport: false,
  62. showPrint: false,
  63. exportDataType: 'all',
  64. exportTypes: ['csv', 'txt', 'doc', 'excel'],
  65. clickToSelect: false,
  66. singleSelect: false,
  67. mobileResponsive: true,
  68. maintainSelected: false,
  69. rememberSelected: false,
  70. fixedColumns: false,
  71. fixedNumber: 0,
  72. fixedRightNumber: 0,
  73. queryParams: $.table.queryParams,
  74. rowStyle: undefined,
  75. };
  76. var options = $.extend(defaults, options);
  77. table.options = options;
  78. table.config[options.id] = options;
  79. $.table.initEvent();
  80. $('#' + options.id).bootstrapTable({
  81. id: options.id,
  82. url: options.url, // 请求后台的URL(*)
  83. contentType: "application/x-www-form-urlencoded", // 编码类型
  84. method: options.method, // 请求方式(*)
  85. cache: false, // 是否使用缓存
  86. height: options.height, // 表格的高度
  87. striped: options.striped, // 是否显示行间隔色
  88. sortable: true, // 是否启用排序
  89. sortStable: true, // 设置为 true 将获得稳定的排序
  90. sortName: options.sortName, // 排序列名称
  91. sortOrder: options.sortOrder, // 排序方式 asc 或者 desc
  92. pagination: options.pagination, // 是否显示分页(*)
  93. paginationLoop: options.paginationLoop, // 是否启用分页条无限循环的功能
  94. pageNumber: 1, // 初始化加载第一页,默认第一页
  95. pageSize: options.pageSize, // 每页的记录行数(*)
  96. pageList: options.pageList, // 可供选择的每页的行数(*)
  97. firstLoad: options.firstLoad, // 是否首次请求加载数据,对于数据较大可以配置false
  98. escape: options.escape, // 转义HTML字符串
  99. showFooter: options.showFooter, // 是否显示表尾
  100. iconSize: 'outline', // 图标大小:undefined默认的按钮尺寸 xs超小按钮sm小按钮lg大按钮
  101. toolbar: '#' + options.toolbar, // 指定工作栏
  102. loadingFontSize: options.loadingFontSize, // 自定义加载文本的字体大小
  103. sidePagination: options.sidePagination, // server启用服务端分页client客户端分页
  104. search: options.search, // 是否显示搜索框功能
  105. searchText: options.searchText, // 搜索框初始显示的内容,默认为空
  106. showSearch: options.showSearch, // 是否显示检索信息
  107. showPageGo: options.showPageGo, // 是否显示跳转页
  108. showRefresh: options.showRefresh, // 是否显示刷新按钮
  109. showColumns: options.showColumns, // 是否显示隐藏某列下拉框
  110. showToggle: options.showToggle, // 是否显示详细视图和列表视图的切换按钮
  111. showExport: options.showExport, // 是否支持导出文件
  112. showPrint: options.showPrint, // 是否支持打印页面
  113. showHeader: options.showHeader, // 是否显示表头
  114. showFullscreen: options.showFullscreen, // 是否显示全屏按钮
  115. uniqueId: options.uniqueId, // 唯一的标识符
  116. clickToSelect: options.clickToSelect, // 是否启用点击选中行
  117. singleSelect: options.singleSelect, // 是否单选checkbox
  118. mobileResponsive: options.mobileResponsive, // 是否支持移动端适配
  119. cardView: options.cardView, // 是否启用显示卡片视图
  120. detailView: options.detailView, // 是否启用显示细节视图
  121. onCheck: options.onCheck, // 当选择此行时触发
  122. onUncheck: options.onUncheck, // 当取消此行时触发
  123. onCheckAll: options.onCheckAll, // 当全选行时触发
  124. onUncheckAll: options.onUncheckAll, // 当取消全选行时触发
  125. onClickRow: options.onClickRow, // 点击某行触发的事件
  126. onDblClickRow: options.onDblClickRow, // 双击某行触发的事件
  127. onClickCell: options.onClickCell, // 单击某格触发的事件
  128. onDblClickCell: options.onDblClickCell, // 双击某格触发的事件
  129. onEditableSave: options.onEditableSave, // 行内编辑保存的事件
  130. onExpandRow: options.onExpandRow, // 点击详细视图的事件
  131. onPostBody: options.onPostBody, // 渲染完成后执行的事件
  132. maintainSelected: options.maintainSelected, // 前端翻页时保留所选行
  133. rememberSelected: options.rememberSelected, // 启用翻页记住前面的选择
  134. fixedColumns: options.fixedColumns, // 是否启用冻结列(左侧)
  135. fixedNumber: options.fixedNumber, // 列冻结的个数(左侧)
  136. fixedRightNumber: options.fixedRightNumber, // 列冻结的个数(右侧)
  137. onReorderRow: options.onReorderRow, // 当拖拽结束后处理函数
  138. queryParams: options.queryParams, // 传递参数(*)
  139. rowStyle: options.rowStyle, // 通过自定义函数设置行样式
  140. footerStyle: options.footerStyle, // 通过自定义函数设置页脚样式
  141. headerStyle: options.headerStyle, // 通过自定义函数设置标题样式
  142. columns: options.columns, // 显示列信息(*)
  143. data: options.data, // 被加载的数据
  144. responseHandler: $.table.responseHandler, // 在加载服务器发送来的数据之前处理函数
  145. onLoadSuccess: $.table.onLoadSuccess, // 当所有数据被加载时触发处理函数
  146. exportOptions: options.exportOptions, // 前端导出忽略列索引
  147. exportDataType: options.exportDataType, // 导出方式(默认all:导出所有数据;basic:导出当前页的数据;selected:导出选中的数据)
  148. exportTypes: options.exportTypes, // 导出文件类型 (json、xml、png、csv、txt、sql、doc、excel、xlsx、powerpoint、pdf)
  149. printPageBuilder: options.printPageBuilder, // 自定义打印页面模板
  150. detailFormatter: options.detailFormatter, // 在行下面展示其他数据列表
  151. });
  152. },
  153. // 获取实例ID,如存在多个返回#id1,#id2 delimeter分隔符
  154. getOptionsIds: function(separator) {
  155. var _separator = $.common.isEmpty(separator) ? "," : separator;
  156. var optionsIds = "";
  157. $.each(table.config, function(key, value){
  158. optionsIds += "#" + key + _separator;
  159. });
  160. return optionsIds.substring(0, optionsIds.length - 1);
  161. },
  162. // 查询条件
  163. queryParams: function(params) {
  164. var curParams = {
  165. // 传递参数查询参数
  166. pageSize: params.limit,
  167. pageNum: params.offset / params.limit + 1,
  168. searchValue: params.search,
  169. orderByColumn: params.sort,
  170. isAsc: params.order
  171. };
  172. var currentId = $.common.isEmpty(table.options.formId) ? $('form').attr('id') : table.options.formId;
  173. return $.extend(curParams, $.common.formToJSON(currentId));
  174. },
  175. // 请求获取数据后处理回调函数
  176. responseHandler: function(res) {
  177. if (typeof table.get(this.id).responseHandler == "function") {
  178. table.get(this.id).responseHandler(res);
  179. }
  180. if (res.code == web_status.SUCCESS) {
  181. if ($.common.isNotEmpty(table.options.sidePagination) && table.options.sidePagination == 'client') {
  182. return res.rows;
  183. } else {
  184. if ($.common.isNotEmpty(table.options.rememberSelected) && table.options.rememberSelected) {
  185. var column = $.common.isEmpty(table.options.uniqueId) ? table.options.columns[1].field : table.options.uniqueId;
  186. $.each(res.rows, function(i, row) {
  187. row.state = $.inArray(row[column], table.rememberSelectedIds[table.options.id]) !== -1;
  188. })
  189. }
  190. return { rows: res.rows, total: res.total };
  191. }
  192. } else {
  193. $.modal.alertWarning(res.msg);
  194. return { rows: [], total: 0 };
  195. }
  196. },
  197. // 初始化事件
  198. initEvent: function() {
  199. // 实例ID信息
  200. var optionsIds = $.table.getOptionsIds();
  201. // 监听事件处理
  202. $(optionsIds).on(TABLE_EVENTS, function () {
  203. table.set($(this).attr("id"));
  204. });
  205. // 在表格体渲染完成,并在 DOM 中可见后触发(事件)
  206. $(optionsIds).on("post-body.bs.table", function (e, args) {
  207. // 浮动提示框特效
  208. $(".table [data-toggle='tooltip']").tooltip();
  209. // 气泡弹出框特效
  210. $('.table [data-toggle="popover"]').popover();
  211. });
  212. // 选中、取消、全部选中、全部取消(事件)
  213. $(optionsIds).on("check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table", function (e, rowsAfter, rowsBefore) {
  214. // 复选框分页保留保存选中数组
  215. var rows = $.common.equals("uncheck-all", e.type) ? rowsBefore : rowsAfter;
  216. var rowIds = $.table.affectedRowIds(rows);
  217. if ($.common.isNotEmpty(table.options.rememberSelected) && table.options.rememberSelected) {
  218. func = $.inArray(e.type, ['check', 'check-all']) > -1 ? 'union' : 'difference';
  219. var selectedIds = table.rememberSelectedIds[table.options.id];
  220. if($.common.isNotEmpty(selectedIds)) {
  221. table.rememberSelectedIds[table.options.id] = _[func](selectedIds, rowIds);
  222. } else {
  223. table.rememberSelectedIds[table.options.id] = _[func]([], rowIds);
  224. }
  225. var selectedRows = table.rememberSelecteds[table.options.id];
  226. if($.common.isNotEmpty(selectedRows)) {
  227. table.rememberSelecteds[table.options.id] = _[func](selectedRows, rows);
  228. } else {
  229. table.rememberSelecteds[table.options.id] = _[func]([], rows);
  230. }
  231. }
  232. });
  233. // 加载成功、选中、取消、全部选中、全部取消(事件)
  234. $(optionsIds).on("check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table load-success.bs.table", function () {
  235. var toolbar = table.options.toolbar;
  236. var uniqueId = table.options.uniqueId;
  237. // 工具栏按钮控制
  238. var rows = $.common.isEmpty(uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(uniqueId);
  239. // 非多个禁用
  240. $('#' + toolbar + ' .multiple').toggleClass('disabled', !rows.length);
  241. // 非单个禁用
  242. $('#' + toolbar + ' .single').toggleClass('disabled', rows.length!=1);
  243. });
  244. // 图片预览事件
  245. $(optionsIds).off("click").on("click", '.img-circle', function() {
  246. var src = $(this).attr('src');
  247. var target = $(this).data('target');
  248. if($.common.equals("self", target)) {
  249. var height = $(this).data('height');
  250. var width = $(this).data('width');
  251. top.layer.open({
  252. title: false,
  253. type: 1,
  254. closeBtn: true,
  255. shadeClose: true,
  256. area: ['auto', 'auto'],
  257. content: "<img src='" + src + "' height='" + height + "' width='" + width + "'/>"
  258. });
  259. } else if ($.common.equals("blank", target)) {
  260. window.open(src);
  261. }
  262. });
  263. // 单击tooltip事件
  264. $(optionsIds).on("click", '.tooltip-show', function() {
  265. var target = $(this).data('target');
  266. var input = $(this).prev();
  267. if ($.common.equals("copy", target)) {
  268. input.select();
  269. document.execCommand("copy");
  270. } else if ($.common.equals("open", target)) {
  271. top.layer.alert(input.val(), {
  272. title: "信息内容",
  273. shadeClose: true,
  274. btn: ['确认'],
  275. btnclass: ['btn btn-primary'],
  276. });
  277. }
  278. });
  279. },
  280. // 当所有数据被加载时触发
  281. onLoadSuccess: function(data) {
  282. if (typeof table.options.onLoadSuccess == "function") {
  283. table.options.onLoadSuccess(data);
  284. }
  285. },
  286. // 表格销毁
  287. destroy: function (tableId) {
  288. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  289. $("#" + currentId).bootstrapTable('destroy');
  290. delete table.rememberSelectedIds[currentId];
  291. delete table.rememberSelecteds[currentId];
  292. },
  293. // 序列号生成
  294. serialNumber: function (index, tableId) {
  295. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  296. var tableParams = $("#" + currentId).bootstrapTable('getOptions');
  297. var pageSize = $.common.isNotEmpty(tableParams.pageSize) ? tableParams.pageSize: table.options.pageSize;
  298. var pageNumber = $.common.isNotEmpty(tableParams.pageNumber) ? tableParams.pageNumber: table.options.pageNumber;
  299. return pageSize * (pageNumber - 1) + index + 1;
  300. },
  301. // 列超出指定长度浮动提示 target(copy单击复制文本 open弹窗打开文本)
  302. tooltip: function (value, length, target) {
  303. var _length = $.common.isEmpty(length) ? 20 : length;
  304. var _text = "";
  305. var _value = $.common.nullToStr(value);
  306. var _target = $.common.isEmpty(target) ? 'copy' : target;
  307. if (_value.length > _length) {
  308. _text = _value.substr(0, _length) + "...";
  309. _value = _value.replace(/\'/g,"&apos;");
  310. _value = _value.replace(/\"/g,"&quot;");
  311. var actions = [];
  312. actions.push($.common.sprintf('<input style="opacity: 0;position: absolute;width:5px;z-index:-1" type="text" value="%s"/>', _value));
  313. actions.push($.common.sprintf('<a href="###" class="tooltip-show" data-toggle="tooltip" data-target="%s" title="%s">%s</a>', _target, _value, _text));
  314. return actions.join('');
  315. } else {
  316. _text = _value;
  317. return _text;
  318. }
  319. },
  320. // 下拉按钮切换
  321. dropdownToggle: function (value) {
  322. var actions = [];
  323. actions.push('<div class="btn-group">');
  324. actions.push('<button type="button" class="btn btn-xs dropdown-toggle" data-toggle="dropdown" aria-expanded="false">');
  325. actions.push('<i class="fa fa-cog"></i>&nbsp;<span class="fa fa-chevron-down"></span></button>');
  326. actions.push('<ul class="dropdown-menu">');
  327. actions.push(value.replace(/<a/g,"<li><a").replace(/<\/a>/g,"</a></li>"));
  328. actions.push('</ul>');
  329. actions.push('</div>');
  330. return actions.join('');
  331. },
  332. // 图片预览
  333. imageView: function (value, height, width, target) {
  334. if ($.common.isEmpty(width)) {
  335. width = 'auto';
  336. }
  337. if ($.common.isEmpty(height)) {
  338. height = 'auto';
  339. }
  340. // blank or self
  341. var _target = $.common.isEmpty(target) ? 'self' : target;
  342. if ($.common.isNotEmpty(value)) {
  343. return $.common.sprintf("<img class='img-circle img-xs' data-height='%s' data-width='%s' data-target='%s' src='%s'/>", height, width, _target, value);
  344. } else {
  345. return $.common.nullToStr(value);
  346. }
  347. },
  348. // 搜索-默认第一个form
  349. search: function(formId, tableId, pageNumber, pageSize) {
  350. table.set(tableId);
  351. table.options.formId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  352. var params = $.common.isEmpty(tableId) ? $("#" + table.options.id).bootstrapTable('getOptions') : $("#" + tableId).bootstrapTable('getOptions');
  353. if ($.common.isNotEmpty(pageNumber)) {
  354. params.pageNumber = pageNumber;
  355. }
  356. if ($.common.isNotEmpty(pageSize)) {
  357. params.pageSize = pageSize;
  358. }
  359. if($.common.isNotEmpty(tableId)){
  360. $("#" + tableId).bootstrapTable('refresh', params);
  361. } else{
  362. $("#" + table.options.id).bootstrapTable('refresh', params);
  363. }
  364. },
  365. // 导出数据
  366. exportExcel: function(formId) {
  367. table.set();
  368. $.modal.confirm("确定导出所有" + table.options.modalName + "吗?", function() {
  369. var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  370. var params = $("#" + table.options.id).bootstrapTable('getOptions');
  371. var dataParam = $("#" + currentId).serializeArray();
  372. dataParam.push({ "name": "orderByColumn", "value": params.sortName });
  373. dataParam.push({ "name": "isAsc", "value": params.sortOrder });
  374. $.modal.loading("正在导出数据,请稍后...");
  375. $.post(table.options.exportUrl, dataParam, function(result) {
  376. if (result.code == web_status.SUCCESS) {
  377. window.location.href = ctx + "common/download?fileName=" + encodeURI(result.msg) + "&delete=" + true;
  378. } else if (result.code == web_status.WARNING) {
  379. $.modal.alertWarning(result.msg)
  380. } else {
  381. $.modal.alertError(result.msg);
  382. }
  383. $.modal.closeLoading();
  384. });
  385. });
  386. },
  387. // 下载模板
  388. importTemplate: function() {
  389. table.set();
  390. $.get(table.options.importTemplateUrl, function(result) {
  391. if (result.code == web_status.SUCCESS) {
  392. window.location.href = ctx + "common/download?fileName=" + encodeURI(result.msg) + "&delete=" + true;
  393. } else if (result.code == web_status.WARNING) {
  394. $.modal.alertWarning(result.msg)
  395. } else {
  396. $.modal.alertError(result.msg);
  397. }
  398. });
  399. },
  400. // 导入数据
  401. importExcel: function(formId, width, height) {
  402. table.set();
  403. var currentId = $.common.isEmpty(formId) ? 'importTpl' : formId;
  404. var _width = $.common.isEmpty(width) ? "400" : width;
  405. var _height = $.common.isEmpty(height) ? "230" : height;
  406. top.layer.open({
  407. type: 1,
  408. area: [_width + 'px', _height + 'px'],
  409. fix: false,
  410. //不固定
  411. maxmin: true,
  412. shade: 0.3,
  413. title: '导入' + table.options.modalName + '数据',
  414. content: $('#' + currentId).html(),
  415. btn: ['<i class="fa fa-check"></i> 导入', '<i class="fa fa-remove"></i> 取消'],
  416. // 弹层外区域关闭
  417. shadeClose: true,
  418. btn1: function(index, layero){
  419. var file = layero.find('#file').val();
  420. if (file == '' || (!$.common.endWith(file, '.xls') && !$.common.endWith(file, '.xlsx'))){
  421. $.modal.msgWarning("请选择后缀为 “xls”或“xlsx”的文件。");
  422. return false;
  423. }
  424. var index = top.layer.load(2, {shade: false});
  425. $.modal.disable();
  426. var formData = new FormData(layero.find('form')[0]);
  427. $.ajax({
  428. url: table.options.importUrl,
  429. data: formData,
  430. cache: false,
  431. contentType: false,
  432. processData: false,
  433. type: 'POST',
  434. success: function (result) {
  435. if (result.code == web_status.SUCCESS) {
  436. $.modal.close(index);
  437. $.modal.closeAll();
  438. $.modal.alertSuccess(result.msg);
  439. $.table.refresh();
  440. } else if (result.code == web_status.WARNING) {
  441. $.modal.close(index);
  442. $.modal.enable();
  443. $.modal.alertWarning(result.msg)
  444. } else {
  445. $.modal.close(index);
  446. $.modal.enable();
  447. $.modal.alertError(result.msg);
  448. }
  449. }
  450. });
  451. }
  452. });
  453. },
  454. // 刷新表格
  455. refresh: function(tableId, pageNumber, pageSize, url) {
  456. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  457. var params = $("#" + currentId).bootstrapTable('getOptions');
  458. if ($.common.isEmpty(pageNumber)) {
  459. pageNumber = params.pageNumber;
  460. }
  461. if ($.common.isEmpty(pageSize)) {
  462. pageSize = params.pageSize;
  463. }
  464. if ($.common.isEmpty(url)) {
  465. url = $.common.isEmpty(url) ? params.url : url;
  466. }
  467. $("#" + currentId).bootstrapTable('refresh', {
  468. silent: true,
  469. url: url,
  470. pageNumber: pageNumber,
  471. pageSize: pageSize
  472. });
  473. },
  474. // 刷新options配置
  475. refreshOptions: function(options, tableId) {
  476. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  477. $("#" + currentId).bootstrapTable('refreshOptions', options);
  478. },
  479. // 查询表格指定列值 deDuplication( true去重、false不去重)
  480. selectColumns: function(column, deDuplication) {
  481. var distinct = $.common.isEmpty(deDuplication) ? true : deDuplication;
  482. var rows = $.map($("#" + table.options.id).bootstrapTable('getSelections'), function (row) {
  483. return $.common.getItemField(row, column);
  484. });
  485. if ($.common.isNotEmpty(table.options.rememberSelected) && table.options.rememberSelected) {
  486. var selectedRows = table.rememberSelecteds[table.options.id];
  487. if($.common.isNotEmpty(selectedRows)) {
  488. rows = $.map(table.rememberSelecteds[table.options.id], function (row) {
  489. return $.common.getItemField(row, column);
  490. });
  491. }
  492. }
  493. return distinct ? $.common.uniqueFn(rows) : rows;
  494. },
  495. // 获取当前页选中或者取消的行ID
  496. affectedRowIds: function(rows) {
  497. var column = $.common.isEmpty(table.options.uniqueId) ? table.options.columns[1].field : table.options.uniqueId;
  498. var rowIds;
  499. if ($.isArray(rows)) {
  500. rowIds = $.map(rows, function(row) {
  501. return $.common.getItemField(row, column);
  502. });
  503. } else {
  504. rowIds = [rows[column]];
  505. }
  506. return rowIds;
  507. },
  508. // 查询表格首列值deDuplication( true去重、false不去重)
  509. selectFirstColumns: function(deDuplication) {
  510. var distinct = $.common.isEmpty(deDuplication) ? true : deDuplication;
  511. var rows = $.map($("#" + table.options.id).bootstrapTable('getSelections'), function (row) {
  512. return $.common.getItemField(row, table.options.columns[1].field);
  513. });
  514. if ($.common.isNotEmpty(table.options.rememberSelected) && table.options.rememberSelected) {
  515. var selectedRows = table.rememberSelecteds[table.options.id];
  516. if($.common.isNotEmpty(selectedRows)) {
  517. rows = $.map(selectedRows, function (row) {
  518. return $.common.getItemField(row, table.options.columns[1].field);
  519. });
  520. }
  521. }
  522. return distinct ? $.common.uniqueFn(rows) : rows;
  523. },
  524. // 回显数据字典
  525. selectDictLabel: function(datas, value) {
  526. if ($.common.isEmpty(datas) || $.common.isEmpty(value)) {
  527. return '';
  528. }
  529. var actions = [];
  530. $.each(datas, function(index, dict) {
  531. if (dict.dictValue == ('' + value)) {
  532. var listClass = $.common.equals("default", dict.listClass) || $.common.isEmpty(dict.listClass) ? "" : "badge badge-" + dict.listClass;
  533. actions.push($.common.sprintf("<span class='%s'>%s</span>", listClass, dict.dictLabel));
  534. return false;
  535. }
  536. });
  537. return actions.join('');
  538. },
  539. // 回显数据字典(字符串数组)
  540. selectDictLabels: function(datas, value, separator) {
  541. if ($.common.isEmpty(datas) || $.common.isEmpty(value)) {
  542. return '';
  543. }
  544. var currentSeparator = $.common.isEmpty(separator) ? "," : separator;
  545. var actions = [];
  546. $.each(value.split(currentSeparator), function(i, val) {
  547. $.each(datas, function(index, dict) {
  548. if (dict.dictValue == ('' + val)) {
  549. var listClass = $.common.equals("default", dict.listClass) || $.common.isEmpty(dict.listClass) ? "" : "badge badge-" + dict.listClass;
  550. actions.push($.common.sprintf("<span class='%s'>%s </span>", listClass, dict.dictLabel));
  551. return false;
  552. }
  553. });
  554. });
  555. return actions.join('');
  556. },
  557. // 显示表格指定列
  558. showColumn: function(column, tableId) {
  559. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  560. $("#" + currentId).bootstrapTable('showColumn', column);
  561. },
  562. // 隐藏表格指定列
  563. hideColumn: function(column, tableId) {
  564. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  565. $("#" + currentId).bootstrapTable('hideColumn', column);
  566. },
  567. // 显示所有表格列
  568. showAllColumns: function(tableId) {
  569. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  570. $("#" + currentId).bootstrapTable('showAllColumns');
  571. },
  572. // 隐藏所有表格列
  573. hideAllColumns: function(tableId) {
  574. var currentId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  575. $("#" + currentId).bootstrapTable('hideAllColumns');
  576. }
  577. },
  578. // 表格树封装处理
  579. treeTable: {
  580. // 初始化表格
  581. init: function(options) {
  582. var defaults = {
  583. id: "bootstrap-tree-table",
  584. type: 1, // 0 代表bootstrapTable 1代表bootstrapTreeTable
  585. height: 0,
  586. rootIdValue: null,
  587. ajaxParams: {},
  588. toolbar: "toolbar",
  589. striped: false,
  590. expandColumn: 1,
  591. showSearch: true,
  592. showRefresh: true,
  593. showColumns: true,
  594. expandAll: true,
  595. expandFirst: true
  596. };
  597. var options = $.extend(defaults, options);
  598. table.options = options;
  599. table.config[options.id] = options;
  600. $.table.initEvent();
  601. $.bttTable = $('#' + options.id).bootstrapTreeTable({
  602. code: options.code, // 用于设置父子关系
  603. parentCode: options.parentCode, // 用于设置父子关系
  604. type: 'post', // 请求方式(*)
  605. url: options.url, // 请求后台的URL(*)
  606. data: options.data, // 无url时用于渲染的数据
  607. ajaxParams: options.ajaxParams, // 请求数据的ajax的data属性
  608. rootIdValue: options.rootIdValue, // 设置指定根节点id值
  609. height: options.height, // 表格树的高度
  610. expandColumn: options.expandColumn, // 在哪一列上面显示展开按钮
  611. striped: options.striped, // 是否显示行间隔色
  612. bordered: options.bordered, // 是否显示边框
  613. toolbar: '#' + options.toolbar, // 指定工作栏
  614. showSearch: options.showSearch, // 是否显示检索信息
  615. showRefresh: options.showRefresh, // 是否显示刷新按钮
  616. showColumns: options.showColumns, // 是否显示隐藏某列下拉框
  617. expandAll: options.expandAll, // 是否全部展开
  618. expandFirst: options.expandFirst, // 是否默认第一级展开--expandAll为false时生效
  619. columns: options.columns, // 显示列信息(*)
  620. responseHandler: $.treeTable.responseHandler, // 在加载服务器发送来的数据之前处理函数
  621. onLoadSuccess: $.treeTable.onLoadSuccess // 当所有数据被加载时触发处理函数
  622. });
  623. },
  624. // 条件查询
  625. search: function(formId) {
  626. var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  627. var params = $.common.formToJSON(currentId);
  628. $.bttTable.bootstrapTreeTable('refresh', params);
  629. },
  630. // 刷新
  631. refresh: function() {
  632. $.bttTable.bootstrapTreeTable('refresh');
  633. },
  634. // 查询表格树指定列值deDuplication( true去重、false不去重)
  635. selectColumns: function(column, deDuplication) {
  636. var distinct = $.common.isEmpty(deDuplication) ? true : deDuplication;
  637. var rows = $.map($.bttTable.bootstrapTreeTable('getSelections'), function (row) {
  638. return $.common.getItemField(row, column);
  639. });
  640. return distinct ? $.common.uniqueFn(rows) : rows;
  641. },
  642. // 请求获取数据后处理回调函数,校验异常状态提醒
  643. responseHandler: function(res) {
  644. if (typeof table.options.responseHandler == "function") {
  645. table.options.responseHandler(res);
  646. }
  647. if (res.code != undefined && res.code != web_status.SUCCESS) {
  648. $.modal.alertWarning(res.msg);
  649. return [];
  650. } else {
  651. return res;
  652. }
  653. },
  654. // 当所有数据被加载时触发
  655. onLoadSuccess: function(data) {
  656. if (typeof table.options.onLoadSuccess == "function") {
  657. table.options.onLoadSuccess(data);
  658. }
  659. $(".table [data-toggle='tooltip']").tooltip();
  660. },
  661. },
  662. // 表单封装处理
  663. form: {
  664. // 表单重置
  665. reset: function(formId, tableId, pageNumber, pageSize) {
  666. table.set(tableId);
  667. formId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  668. $("#" + formId)[0].reset();
  669. var tableId = $.common.isEmpty(tableId) ? table.options.id : tableId;
  670. if (table.options.type == table_type.bootstrapTable) {
  671. var params = $("#" + tableId).bootstrapTable('getOptions');
  672. if ($.common.isNotEmpty(pageNumber)) {
  673. params.pageNumber = pageNumber;
  674. }
  675. if ($.common.isNotEmpty(pageSize)) {
  676. params.pageSize = pageSize;
  677. }
  678. $("#" + tableId).bootstrapTable('refresh', params);
  679. } else if (table.options.type == table_type.bootstrapTreeTable) {
  680. $("#" + tableId).bootstrapTreeTable('refresh', []);
  681. }
  682. if ($.common.isNotEmpty(startLayDate) && $.common.isNotEmpty(endLayDate)) {
  683. endLayDate.config.min.year = '';
  684. endLayDate.config.min.month = '';
  685. endLayDate.config.min.date = '';
  686. startLayDate.config.max.year = '2099';
  687. startLayDate.config.max.month = '12';
  688. startLayDate.config.max.date = '31';
  689. }
  690. },
  691. // 获取选中复选框项
  692. selectCheckeds: function(name) {
  693. var checkeds = "";
  694. $('input:checkbox[name="' + name + '"]:checked').each(function(i) {
  695. if (0 == i) {
  696. checkeds = $(this).val();
  697. } else {
  698. checkeds += ("," + $(this).val());
  699. }
  700. });
  701. return checkeds;
  702. },
  703. // 获取选中下拉框项
  704. selectSelects: function(name) {
  705. var selects = "";
  706. $('#' + name + ' option:selected').each(function (i) {
  707. if (0 == i) {
  708. selects = $(this).val();
  709. } else {
  710. selects += ("," + $(this).val());
  711. }
  712. });
  713. return selects;
  714. }
  715. },
  716. // 弹出层封装处理
  717. modal: {
  718. // 显示图标
  719. icon: function(type) {
  720. var icon = "";
  721. if (type == modal_status.WARNING) {
  722. icon = 0;
  723. } else if (type == modal_status.SUCCESS) {
  724. icon = 1;
  725. } else if (type == modal_status.FAIL) {
  726. icon = 2;
  727. } else {
  728. icon = 3;
  729. }
  730. return icon;
  731. },
  732. // 消息提示
  733. msg: function(content, type) {
  734. if (type != undefined) {
  735. top.layer.msg(content, { icon: $.modal.icon(type), time: 1000, shift: 5 });
  736. } else {
  737. top.layer.msg(content);
  738. }
  739. },
  740. // 错误消息
  741. msgError: function(content) {
  742. $.modal.msg(content, modal_status.FAIL);
  743. },
  744. // 成功消息
  745. msgSuccess: function(content) {
  746. $.modal.msg(content, modal_status.SUCCESS);
  747. },
  748. // 警告消息
  749. msgWarning: function(content) {
  750. $.modal.msg(content, modal_status.WARNING);
  751. },
  752. // 弹出提示
  753. alert: function(content, type) {
  754. top.layer.alert(content, {
  755. icon: $.modal.icon(type),
  756. title: "系统提示",
  757. btn: ['确认'],
  758. btnclass: ['btn btn-primary'],
  759. });
  760. },
  761. // 错误提示
  762. alertError: function(content) {
  763. $.modal.alert(content, modal_status.FAIL);
  764. },
  765. // 成功提示
  766. alertSuccess: function(content) {
  767. $.modal.alert(content, modal_status.SUCCESS);
  768. },
  769. // 警告提示
  770. alertWarning: function(content) {
  771. $.modal.alert(content, modal_status.WARNING);
  772. },
  773. // 消息提示,重新加载页面
  774. msgReload: function(msg, type) {
  775. top.layer.msg(msg, {
  776. icon: $.modal.icon(type),
  777. time: 500,
  778. shade: [0.1, '#8F8F8F']
  779. },
  780. function() {
  781. $.modal.reload();
  782. });
  783. },
  784. // 消息提示成功并刷新父窗体
  785. msgSuccessReload: function(msg) {
  786. $.modal.msgReload(msg, modal_status.SUCCESS);
  787. },
  788. // 获取iframe页的DOM
  789. getChildFrame: function (index) {
  790. if($.common.isEmpty(index)){
  791. var index = parent.layer.getFrameIndex(window.name);
  792. return parent.layer.getChildFrame('body', index);
  793. } else {
  794. return top.layer.getChildFrame('body', index);
  795. }
  796. },
  797. // 关闭窗体
  798. close: function (index) {
  799. if($.common.isEmpty(index)){
  800. var index = parent.layer.getFrameIndex(window.name);
  801. parent.layer.close(index);
  802. } else {
  803. top.layer.close(index);
  804. }
  805. },
  806. // 关闭全部窗体
  807. closeAll: function () {
  808. top.layer.closeAll();
  809. },
  810. // 确认窗体
  811. confirm: function (content, callBack) {
  812. top.layer.confirm(content, {
  813. icon: 3,
  814. title: "系统提示",
  815. btn: ['确认', '取消']
  816. }, function (index) {
  817. $.modal.close(index);
  818. callBack(true);
  819. });
  820. },
  821. // 弹出层指定宽度
  822. open: function (title, url, width, height, callback) {
  823. // 如果是移动端,就使用自适应大小弹窗
  824. if ($.common.isMobile()) {
  825. width = 'auto';
  826. height = 'auto';
  827. }
  828. if ($.common.isEmpty(title)) {
  829. title = false;
  830. }
  831. if ($.common.isEmpty(url)) {
  832. url = "/404.html";
  833. }
  834. if ($.common.isEmpty(width)) {
  835. width = 800;
  836. }
  837. if ($.common.isEmpty(height)) {
  838. height = ($(window).height() - 50);
  839. }
  840. if ($.common.isEmpty(callback)) {
  841. callback = function(index, layero) {
  842. var iframeWin = layero.find('iframe')[0];
  843. iframeWin.contentWindow.submitHandler(index, layero);
  844. }
  845. }
  846. top.layer.open({
  847. type: 2,
  848. area: [width + 'px', height + 'px'],
  849. fix: false,
  850. //不固定
  851. maxmin: true,
  852. shade: 0.3,
  853. title: title,
  854. content: url,
  855. btn: ['确定', '关闭'],
  856. // 弹层外区域关闭
  857. shadeClose: true,
  858. yes: callback,
  859. cancel: function(index) {
  860. return true;
  861. }
  862. });
  863. },
  864. // 弹出层指定参数选项
  865. openOptions: function (options) {
  866. var _url = $.common.isEmpty(options.url) ? "/404.html" : options.url;
  867. var _title = $.common.isEmpty(options.title) ? "系统窗口" : options.title;
  868. var _width = $.common.isEmpty(options.width) ? "800" : options.width;
  869. var _height = $.common.isEmpty(options.height) ? ($(window).height() - 50) : options.height;
  870. var _btn = ['<i class="fa fa-check"></i> 确认', '<i class="fa fa-close"></i> 关闭'];
  871. // 如果是移动端,就使用自适应大小弹窗
  872. if ($.common.isMobile()) {
  873. _width = 'auto';
  874. _height = 'auto';
  875. }
  876. if ($.common.isEmpty(options.yes)) {
  877. options.yes = function(index, layero) {
  878. options.callBack(index, layero);
  879. }
  880. }
  881. var btnCallback = {};
  882. if(options.btn instanceof Array){
  883. for (var i = 1, len = options.btn.length; i < len; i++) {
  884. var btn = options["btn" + (i + 1)];
  885. if (btn) {
  886. btnCallback["btn" + (i + 1)] = btn;
  887. }
  888. }
  889. }
  890. var index = top.layer.open($.extend({
  891. type: 2,
  892. maxmin: $.common.isEmpty(options.maxmin) ? true : options.maxmin,
  893. shade: 0.3,
  894. title: _title,
  895. fix: false,
  896. area: [_width + 'px', _height + 'px'],
  897. content: _url,
  898. shadeClose: $.common.isEmpty(options.shadeClose) ? true : options.shadeClose,
  899. skin: options.skin,
  900. // options.btn设置为0表示不显示按钮
  901. btn: $.common.isEmpty(options.btn) ? _btn : options.btn,
  902. yes: options.yes,
  903. cancel: function () {
  904. return true;
  905. }
  906. }, btnCallback));
  907. if ($.common.isNotEmpty(options.full) && options.full === true) {
  908. layer.full(index);
  909. }
  910. },
  911. // 弹出层全屏
  912. openFull: function (title, url, width, height) {
  913. // 如果是移动端,就使用自适应大小弹窗
  914. if ($.common.isMobile()) {
  915. width = 'auto';
  916. height = 'auto';
  917. }
  918. if ($.common.isEmpty(title)) {
  919. title = false;
  920. }
  921. if ($.common.isEmpty(url)) {
  922. url = "/404.html";
  923. }
  924. if ($.common.isEmpty(width)) {
  925. width = 800;
  926. }
  927. if ($.common.isEmpty(height)) {
  928. height = ($(window).height() - 50);
  929. }
  930. var index = top.layer.open({
  931. type: 2,
  932. area: [width + 'px', height + 'px'],
  933. fix: false,
  934. //不固定
  935. maxmin: true,
  936. shade: 0.3,
  937. title: title,
  938. content: url,
  939. btn: ['确定', '关闭'],
  940. // 弹层外区域关闭
  941. shadeClose: true,
  942. yes: function(index, layero) {
  943. var iframeWin = layero.find('iframe')[0];
  944. iframeWin.contentWindow.submitHandler(index, layero);
  945. },
  946. cancel: function(index) {
  947. return true;
  948. }
  949. });
  950. top.layer.full(index);
  951. },
  952. // 选卡页方式打开
  953. openTab: function (title, url, isRefresh) {
  954. createMenuItem(url, title, isRefresh);
  955. },
  956. // 选卡页同一页签打开
  957. parentTab: function (title, url) {
  958. var dataId = window.frameElement.getAttribute('data-id');
  959. createMenuItem(url, title);
  960. closeItem(dataId);
  961. },
  962. // 关闭选项卡
  963. closeTab: function (dataId) {
  964. closeItem(dataId);
  965. },
  966. // 禁用按钮
  967. disable: function() {
  968. var doc = window.top == window.parent ? window.document : window.parent.document;
  969. $("a[class*=layui-layer-btn]", doc).addClass("layer-disabled");
  970. },
  971. // 启用按钮
  972. enable: function() {
  973. var doc = window.top == window.parent ? window.document : window.parent.document;
  974. $("a[class*=layui-layer-btn]", doc).removeClass("layer-disabled");
  975. },
  976. // 打开遮罩层
  977. loading: function (message) {
  978. $.blockUI({ message: '<div class="loaderbox"><div class="loading-activity"></div> ' + message + '</div>' });
  979. },
  980. // 关闭遮罩层
  981. closeLoading: function () {
  982. setTimeout(function(){
  983. $.unblockUI();
  984. }, 50);
  985. },
  986. // 重新加载
  987. reload: function () {
  988. parent.location.reload();
  989. }
  990. },
  991. // 操作封装处理
  992. operate: {
  993. // 提交数据
  994. submit: function(url, type, dataType, data, callback) {
  995. var config = {
  996. url: url,
  997. type: type,
  998. dataType: dataType,
  999. data: data,
  1000. beforeSend: function () {
  1001. $.modal.loading("正在处理中,请稍后...");
  1002. },
  1003. success: function(result) {
  1004. if (typeof callback == "function") {
  1005. callback(result);
  1006. }
  1007. $.operate.ajaxSuccess(result);
  1008. }
  1009. };
  1010. $.ajax(config)
  1011. },
  1012. // post请求传输
  1013. post: function(url, data, callback) {
  1014. $.operate.submit(url, "post", "json", data, callback);
  1015. },
  1016. // get请求传输
  1017. get: function(url, callback) {
  1018. $.operate.submit(url, "get", "json", "", callback);
  1019. },
  1020. // 详细信息
  1021. detail: function(id, width, height) {
  1022. table.set();
  1023. var _url = $.operate.detailUrl(id);
  1024. var options = {
  1025. title: table.options.modalName + "详细",
  1026. width: width,
  1027. height: height,
  1028. url: _url,
  1029. skin: 'layui-layer-gray',
  1030. btn: ['关闭'],
  1031. yes: function (index, layero) {
  1032. $.modal.close(index);
  1033. }
  1034. };
  1035. $.modal.openOptions(options);
  1036. },
  1037. // 详细信息,以tab页展现
  1038. detailTab: function(id) {
  1039. table.set();
  1040. $.modal.openTab("详细" + table.options.modalName, $.operate.detailUrl(id));
  1041. },
  1042. // 详细访问地址
  1043. detailUrl: function(id) {
  1044. var url = "/404.html";
  1045. if ($.common.isNotEmpty(id)) {
  1046. url = table.options.detailUrl.replace("{id}", id);
  1047. } else {
  1048. var id = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
  1049. if (id.length == 0) {
  1050. $.modal.alertWarning("请至少选择一条记录");
  1051. return;
  1052. }
  1053. url = table.options.detailUrl.replace("{id}", id);
  1054. }
  1055. return url;
  1056. },
  1057. // 删除信息
  1058. remove: function(id) {
  1059. table.set();
  1060. $.modal.confirm("确定删除该条" + table.options.modalName + "信息吗?", function() {
  1061. var url = $.common.isEmpty(id) ? table.options.removeUrl : table.options.removeUrl.replace("{id}", id);
  1062. if(table.options.type == table_type.bootstrapTreeTable) {
  1063. $.operate.get(url);
  1064. } else {
  1065. var data = { "ids": id };
  1066. $.operate.submit(url, "post", "json", data);
  1067. }
  1068. });
  1069. },
  1070. // 批量删除信息
  1071. removeAll: function() {
  1072. table.set();
  1073. var rows = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
  1074. if (rows.length == 0) {
  1075. $.modal.alertWarning("请至少选择一条记录");
  1076. return;
  1077. }
  1078. $.modal.confirm("确认要删除选中的" + rows.length + "条数据吗?", function() {
  1079. var url = table.options.removeUrl;
  1080. var data = { "ids": rows.join() };
  1081. $.operate.submit(url, "post", "json", data);
  1082. });
  1083. },
  1084. // 清空信息
  1085. clean: function() {
  1086. table.set();
  1087. $.modal.confirm("确定清空所有" + table.options.modalName + "吗?", function() {
  1088. var url = table.options.cleanUrl;
  1089. $.operate.submit(url, "post", "json", "");
  1090. });
  1091. },
  1092. // 添加信息
  1093. add: function(id) {
  1094. table.set();
  1095. $.modal.open("添加" + table.options.modalName, $.operate.addUrl(id));
  1096. },
  1097. // 添加信息,以tab页展现
  1098. addTab: function (id) {
  1099. table.set();
  1100. $.modal.openTab("添加" + table.options.modalName, $.operate.addUrl(id));
  1101. },
  1102. // 添加信息 全屏
  1103. addFull: function(id) {
  1104. table.set();
  1105. $.modal.openFull("添加" + table.options.modalName, $.operate.addUrl(id));
  1106. },
  1107. // 添加访问地址
  1108. addUrl: function(id) {
  1109. var url = $.common.isEmpty(id) ? table.options.createUrl.replace("{id}", "") : table.options.createUrl.replace("{id}", id);
  1110. return url;
  1111. },
  1112. // 修改信息
  1113. edit: function(id) {
  1114. table.set();
  1115. if($.common.isEmpty(id) && table.options.type == table_type.bootstrapTreeTable) {
  1116. var row = $("#" + table.options.id).bootstrapTreeTable('getSelections')[0];
  1117. if ($.common.isEmpty(row)) {
  1118. $.modal.alertWarning("请至少选择一条记录");
  1119. return;
  1120. }
  1121. var url = table.options.updateUrl.replace("{id}", row[table.options.uniqueId]);
  1122. $.modal.open("修改" + table.options.modalName, url);
  1123. } else {
  1124. $.modal.open("修改" + table.options.modalName, $.operate.editUrl(id));
  1125. }
  1126. },
  1127. // 修改信息,以tab页展现
  1128. editTab: function(id) {
  1129. table.set();
  1130. $.modal.openTab("修改" + table.options.modalName, $.operate.editUrl(id));
  1131. },
  1132. // 修改信息 全屏
  1133. editFull: function(id) {
  1134. table.set();
  1135. var url = "/404.html";
  1136. if ($.common.isNotEmpty(id)) {
  1137. url = table.options.updateUrl.replace("{id}", id);
  1138. } else {
  1139. if(table.options.type == table_type.bootstrapTreeTable) {
  1140. var row = $("#" + table.options.id).bootstrapTreeTable('getSelections')[0];
  1141. if ($.common.isEmpty(row)) {
  1142. $.modal.alertWarning("请至少选择一条记录");
  1143. return;
  1144. }
  1145. url = table.options.updateUrl.replace("{id}", row[table.options.uniqueId]);
  1146. } else {
  1147. var row = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
  1148. url = table.options.updateUrl.replace("{id}", row);
  1149. }
  1150. }
  1151. $.modal.openFull("修改" + table.options.modalName, url);
  1152. },
  1153. // 修改访问地址
  1154. editUrl: function(id) {
  1155. var url = "/404.html";
  1156. if ($.common.isNotEmpty(id)) {
  1157. url = table.options.updateUrl.replace("{id}", id);
  1158. } else {
  1159. var id = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
  1160. if (id.length == 0) {
  1161. $.modal.alertWarning("请至少选择一条记录");
  1162. return;
  1163. }
  1164. url = table.options.updateUrl.replace("{id}", id);
  1165. }
  1166. return url;
  1167. },
  1168. // 保存信息 刷新表格
  1169. save: function(url, data, callback) {
  1170. var config = {
  1171. url: url,
  1172. type: "post",
  1173. dataType: "json",
  1174. data: data,
  1175. beforeSend: function () {
  1176. $.modal.loading("正在处理中,请稍后...");
  1177. $.modal.disable();
  1178. },
  1179. success: function(result) {
  1180. if (typeof callback == "function") {
  1181. callback(result);
  1182. }
  1183. $.operate.successCallback(result);
  1184. }
  1185. };
  1186. $.ajax(config)
  1187. },
  1188. // 保存信息 弹出结果提示框
  1189. saveModal: function(url, data, callback) {
  1190. var config = {
  1191. url: url,
  1192. type: "post",
  1193. dataType: "json",
  1194. data: data,
  1195. beforeSend: function () {
  1196. $.modal.loading("正在处理中,请稍后...");
  1197. },
  1198. success: function(result) {
  1199. if (typeof callback == "function") {
  1200. callback(result);
  1201. }
  1202. if (result.code == web_status.SUCCESS) {
  1203. $.modal.alertSuccess(result.msg)
  1204. } else if (result.code == web_status.WARNING) {
  1205. $.modal.alertWarning(result.msg)
  1206. } else {
  1207. $.modal.alertError(result.msg);
  1208. }
  1209. $.modal.closeLoading();
  1210. }
  1211. };
  1212. $.ajax(config)
  1213. },
  1214. // 保存选项卡信息
  1215. saveTab: function(url, data, callback) {
  1216. var config = {
  1217. url: url,
  1218. type: "post",
  1219. dataType: "json",
  1220. data: data,
  1221. beforeSend: function () {
  1222. $.modal.loading("正在处理中,请稍后...");
  1223. },
  1224. success: function(result) {
  1225. if (typeof callback == "function") {
  1226. callback(result);
  1227. }
  1228. $.operate.successTabCallback(result);
  1229. }
  1230. };
  1231. $.ajax(config)
  1232. },
  1233. // 保存结果弹出msg刷新table表格
  1234. ajaxSuccess: function (result) {
  1235. if (result.code == web_status.SUCCESS && table.options.type == table_type.bootstrapTable) {
  1236. $.modal.msgSuccess(result.msg);
  1237. $.table.refresh();
  1238. } else if (result.code == web_status.SUCCESS && table.options.type == table_type.bootstrapTreeTable) {
  1239. $.modal.msgSuccess(result.msg);
  1240. $.treeTable.refresh();
  1241. } else if (result.code == web_status.SUCCESS && $.common.isEmpty(table.options.type)) {
  1242. $.modal.msgSuccess(result.msg)
  1243. } else if (result.code == web_status.WARNING) {
  1244. $.modal.alertWarning(result.msg)
  1245. } else {
  1246. $.modal.alertError(result.msg);
  1247. }
  1248. $.modal.closeLoading();
  1249. },
  1250. // 保存结果重新加载页面
  1251. saveReload: function (result) {
  1252. if (result.code == web_status.SUCCESS) {
  1253. $.modal.msgSuccessReload(result.msg);
  1254. } else if (result.code == web_status.WARNING) {
  1255. $.modal.alertWarning(result.msg)
  1256. } else {
  1257. $.modal.alertError(result.msg);
  1258. }
  1259. $.modal.closeLoading();
  1260. },
  1261. // 成功回调执行事件(父窗体静默更新)
  1262. successCallback: function(result) {
  1263. if (result.code == web_status.SUCCESS) {
  1264. var parent = activeWindow();
  1265. if($.common.isEmpty(parent.table)) {
  1266. $.modal.msgSuccessReload(result.msg);
  1267. } else if (parent.table.options.type == table_type.bootstrapTable) {
  1268. $.modal.close();
  1269. parent.$.modal.msgSuccess(result.msg);
  1270. parent.$.table.refresh();
  1271. } else if (parent.table.options.type == table_type.bootstrapTreeTable) {
  1272. $.modal.close();
  1273. parent.$.modal.msgSuccess(result.msg);
  1274. parent.$.treeTable.refresh();
  1275. }
  1276. } else if (result.code == web_status.WARNING) {
  1277. $.modal.alertWarning(result.msg)
  1278. } else {
  1279. $.modal.alertError(result.msg);
  1280. }
  1281. $.modal.closeLoading();
  1282. $.modal.enable();
  1283. },
  1284. // 选项卡成功回调执行事件(父窗体静默更新)
  1285. successTabCallback: function(result) {
  1286. if (result.code == web_status.SUCCESS) {
  1287. var topWindow = $(window.parent.document);
  1288. var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-panel');
  1289. var $contentWindow = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow)[0].contentWindow;
  1290. $.modal.close();
  1291. $contentWindow.$.modal.msgSuccess(result.msg);
  1292. $contentWindow.$(".layui-layer-padding").removeAttr("style");
  1293. if ($contentWindow.table.options.type == table_type.bootstrapTable) {
  1294. $contentWindow.$.table.refresh();
  1295. } else if ($contentWindow.table.options.type == table_type.bootstrapTreeTable) {
  1296. $contentWindow.$.treeTable.refresh();
  1297. }
  1298. $.modal.closeTab();
  1299. } else if (result.code == web_status.WARNING) {
  1300. $.modal.alertWarning(result.msg)
  1301. } else {
  1302. $.modal.alertError(result.msg);
  1303. }
  1304. $.modal.closeLoading();
  1305. }
  1306. },
  1307. // 校验封装处理
  1308. validate: {
  1309. // 判断返回标识是否唯一 false 不存在 true 存在
  1310. unique: function (value) {
  1311. if (value == "0") {
  1312. return true;
  1313. }
  1314. return false;
  1315. },
  1316. // 表单验证
  1317. form: function (formId) {
  1318. var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  1319. return $("#" + currentId).validate().form();
  1320. },
  1321. // 重置表单验证(清除提示信息)
  1322. reset: function (formId) {
  1323. var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
  1324. return $("#" + currentId).validate().resetForm();
  1325. }
  1326. },
  1327. // 树插件封装处理
  1328. tree: {
  1329. _option: {},
  1330. _lastValue: {},
  1331. // 初始化树结构
  1332. init: function(options) {
  1333. var defaults = {
  1334. id: "tree", // 属性ID
  1335. expandLevel: 0, // 展开等级节点
  1336. view: {
  1337. selectedMulti: false, // 设置是否允许同时选中多个节点
  1338. nameIsHTML: true // 设置 name 属性是否支持 HTML 脚本
  1339. },
  1340. check: {
  1341. enable: false, // 置 zTree 的节点上是否显示 checkbox / radio
  1342. nocheckInherit: true, // 设置子节点是否自动继承
  1343. chkboxType: { "Y": "ps", "N": "ps" } // 父子节点的关联关系
  1344. },
  1345. data: {
  1346. key: {
  1347. title: "title" // 节点数据保存节点提示信息的属性名称
  1348. },
  1349. simpleData: {
  1350. enable: true // true / false 分别表示 使用 / 不使用 简单数据模式
  1351. }
  1352. },
  1353. };
  1354. var options = $.extend(defaults, options);
  1355. $.tree._option = options;
  1356. // 树结构初始化加载
  1357. var setting = {
  1358. callback: {
  1359. onClick: options.onClick, // 用于捕获节点被点击的事件回调函数
  1360. onCheck: options.onCheck, // 用于捕获 checkbox / radio 被勾选 或 取消勾选的事件回调函数
  1361. onDblClick: options.onDblClick // 用于捕获鼠标双击之后的事件回调函数
  1362. },
  1363. check: options.check,
  1364. view: options.view,
  1365. data: options.data
  1366. };
  1367. $.get(options.url, function(data) {
  1368. var treeId = $("#treeId").val();
  1369. tree = $.fn.zTree.init($("#" + options.id), setting, data);
  1370. $._tree = tree;
  1371. for (var i = 0; i < options.expandLevel; i++) {
  1372. var nodes = tree.getNodesByParam("level", i);
  1373. for (var j = 0; j < nodes.length; j++) {
  1374. tree.expandNode(nodes[j], true, false, false);
  1375. }
  1376. }
  1377. var node = tree.getNodesByParam("id", treeId, null)[0];
  1378. $.tree.selectByIdName(treeId, node);
  1379. // 回调tree方法
  1380. if(typeof(options.callBack) === "function"){
  1381. options.callBack(tree);
  1382. }
  1383. });
  1384. },
  1385. // 搜索节点
  1386. searchNode: function() {
  1387. // 取得输入的关键字的值
  1388. var value = $.common.trim($("#keyword").val());
  1389. if ($.tree._lastValue == value) {
  1390. return;
  1391. }
  1392. // 保存最后一次搜索名称
  1393. $.tree._lastValue = value;
  1394. var nodes = $._tree.getNodes();
  1395. // 如果要查空字串,就退出不查了。
  1396. if (value == "") {
  1397. $.tree.showAllNode(nodes);
  1398. return;
  1399. }
  1400. $.tree.hideAllNode(nodes);
  1401. // 根据搜索值模糊匹配
  1402. $.tree.updateNodes($._tree.getNodesByParamFuzzy("name", value));
  1403. },
  1404. // 根据Id和Name选中指定节点
  1405. selectByIdName: function(treeId, node) {
  1406. if ($.common.isNotEmpty(treeId) && node && treeId == node.id) {
  1407. $._tree.selectNode(node, true);
  1408. }
  1409. },
  1410. // 显示所有节点
  1411. showAllNode: function(nodes) {
  1412. nodes = $._tree.transformToArray(nodes);
  1413. for (var i = nodes.length - 1; i >= 0; i--) {
  1414. if (nodes[i].getParentNode() != null) {
  1415. $._tree.expandNode(nodes[i], true, false, false, false);
  1416. } else {
  1417. $._tree.expandNode(nodes[i], true, true, false, false);
  1418. }
  1419. $._tree.showNode(nodes[i]);
  1420. $.tree.showAllNode(nodes[i].children);
  1421. }
  1422. },
  1423. // 隐藏所有节点
  1424. hideAllNode: function(nodes) {
  1425. var tree = $.fn.zTree.getZTreeObj("tree");
  1426. var nodes = $._tree.transformToArray(nodes);
  1427. for (var i = nodes.length - 1; i >= 0; i--) {
  1428. $._tree.hideNode(nodes[i]);
  1429. }
  1430. },
  1431. // 显示所有父节点
  1432. showParent: function(treeNode) {
  1433. var parentNode;
  1434. while ((parentNode = treeNode.getParentNode()) != null) {
  1435. $._tree.showNode(parentNode);
  1436. $._tree.expandNode(parentNode, true, false, false);
  1437. treeNode = parentNode;
  1438. }
  1439. },
  1440. // 显示所有孩子节点
  1441. showChildren: function(treeNode) {
  1442. if (treeNode.isParent) {
  1443. for (var idx in treeNode.children) {
  1444. var node = treeNode.children[idx];
  1445. $._tree.showNode(node);
  1446. $.tree.showChildren(node);
  1447. }
  1448. }
  1449. },
  1450. // 更新节点状态
  1451. updateNodes: function(nodeList) {
  1452. $._tree.showNodes(nodeList);
  1453. for (var i = 0, l = nodeList.length; i < l; i++) {
  1454. var treeNode = nodeList[i];
  1455. $.tree.showChildren(treeNode);
  1456. $.tree.showParent(treeNode)
  1457. }
  1458. },
  1459. // 获取当前被勾选集合
  1460. getCheckedNodes: function(column) {
  1461. var _column = $.common.isEmpty(column) ? "id" : column;
  1462. var nodes = $._tree.getCheckedNodes(true);
  1463. return $.map(nodes, function (row) {
  1464. return row[_column];
  1465. }).join();
  1466. },
  1467. // 不允许根父节点选择
  1468. notAllowParents: function(_tree) {
  1469. var nodes = _tree.getSelectedNodes();
  1470. if(nodes.length == 0){
  1471. $.modal.msgError("请选择节点后提交");
  1472. return false;
  1473. }
  1474. for (var i = 0; i < nodes.length; i++) {
  1475. if (nodes[i].level == 0) {
  1476. $.modal.msgError("不能选择根节点(" + nodes[i].name + ")");
  1477. return false;
  1478. }
  1479. if (nodes[i].isParent) {
  1480. $.modal.msgError("不能选择父节点(" + nodes[i].name + ")");
  1481. return false;
  1482. }
  1483. }
  1484. return true;
  1485. },
  1486. // 不允许最后层级节点选择
  1487. notAllowLastLevel: function(_tree) {
  1488. var nodes = _tree.getSelectedNodes();
  1489. for (var i = 0; i < nodes.length; i++) {
  1490. if (!nodes[i].isParent) {
  1491. $.modal.msgError("不能选择最后层级节点(" + nodes[i].name + ")");
  1492. return false;
  1493. }
  1494. }
  1495. return true;
  1496. },
  1497. // 隐藏/显示搜索栏
  1498. toggleSearch: function() {
  1499. $('#search').slideToggle(200);
  1500. $('#btnShow').toggle();
  1501. $('#btnHide').toggle();
  1502. $('#keyword').focus();
  1503. },
  1504. // 折叠
  1505. collapse: function() {
  1506. $._tree.expandAll(false);
  1507. },
  1508. // 展开
  1509. expand: function() {
  1510. $._tree.expandAll(true);
  1511. }
  1512. },
  1513. // 通用方法封装处理
  1514. common: {
  1515. // 判断字符串是否为空
  1516. isEmpty: function (value) {
  1517. if (value == null || this.trim(value) == "") {
  1518. return true;
  1519. }
  1520. return false;
  1521. },
  1522. // 判断一个字符串是否为非空串
  1523. isNotEmpty: function (value) {
  1524. return !$.common.isEmpty(value);
  1525. },
  1526. // 空对象转字符串
  1527. nullToStr: function(value) {
  1528. if ($.common.isEmpty(value)) {
  1529. return "-";
  1530. }
  1531. return value;
  1532. },
  1533. // 是否显示数据 为空默认为显示
  1534. visible: function (value) {
  1535. if ($.common.isEmpty(value) || value == true) {
  1536. return true;
  1537. }
  1538. return false;
  1539. },
  1540. // 空格截取
  1541. trim: function (value) {
  1542. if (value == null) {
  1543. return "";
  1544. }
  1545. return value.toString().replace(/(^\s*)|(\s*$)|\r|\n/g, "");
  1546. },
  1547. // 比较两个字符串(大小写敏感)
  1548. equals: function (str, that) {
  1549. return str == that;
  1550. },
  1551. // 比较两个字符串(大小写不敏感)
  1552. equalsIgnoreCase: function (str, that) {
  1553. return String(str).toUpperCase() === String(that).toUpperCase();
  1554. },
  1555. // 将字符串按指定字符分割
  1556. split: function (str, sep, maxLen) {
  1557. if ($.common.isEmpty(str)) {
  1558. return null;
  1559. }
  1560. var value = String(str).split(sep);
  1561. return maxLen ? value.slice(0, maxLen - 1) : value;
  1562. },
  1563. // 字符串格式化(%s )
  1564. sprintf: function (str) {
  1565. var args = arguments, flag = true, i = 1;
  1566. str = str.replace(/%s/g, function () {
  1567. var arg = args[i++];
  1568. if (typeof arg === 'undefined') {
  1569. flag = false;
  1570. return '';
  1571. }
  1572. return arg == null ? '' : arg;
  1573. });
  1574. return flag ? str : '';
  1575. },
  1576. // 日期格式化 时间戳 -> yyyy-MM-dd HH-mm-ss
  1577. dateFormat: function(date, format) {
  1578. var that = this;
  1579. if (that.isEmpty(date)) return "";
  1580. if (!date) return;
  1581. if (!format) format = "yyyy-MM-dd";
  1582. switch (typeof date) {
  1583. case "string":
  1584. date = new Date(date.replace(/-/, "/"));
  1585. break;
  1586. case "number":
  1587. date = new Date(date);
  1588. break;
  1589. }
  1590. if (!date instanceof Date) return;
  1591. var dict = {
  1592. "yyyy": date.getFullYear(),
  1593. "M": date.getMonth() + 1,
  1594. "d": date.getDate(),
  1595. "H": date.getHours(),
  1596. "m": date.getMinutes(),
  1597. "s": date.getSeconds(),
  1598. "MM": ("" + (date.getMonth() + 101)).substr(1),
  1599. "dd": ("" + (date.getDate() + 100)).substr(1),
  1600. "HH": ("" + (date.getHours() + 100)).substr(1),
  1601. "mm": ("" + (date.getMinutes() + 100)).substr(1),
  1602. "ss": ("" + (date.getSeconds() + 100)).substr(1)
  1603. };
  1604. return format.replace(/(yyyy|MM?|dd?|HH?|ss?|mm?)/g,
  1605. function() {
  1606. return dict[arguments[0]];
  1607. });
  1608. },
  1609. // 获取节点数据,支持多层级访问
  1610. getItemField: function (item, field) {
  1611. var value = item;
  1612. if (typeof field !== 'string' || item.hasOwnProperty(field)) {
  1613. return item[field];
  1614. }
  1615. var props = field.split('.');
  1616. for (var p in props) {
  1617. value = value && value[props[p]];
  1618. }
  1619. return value;
  1620. },
  1621. // 指定随机数返回
  1622. random: function (min, max) {
  1623. return Math.floor((Math.random() * max) + min);
  1624. },
  1625. // 判断字符串是否是以start开头
  1626. startWith: function(value, start) {
  1627. var reg = new RegExp("^" + start);
  1628. return reg.test(value)
  1629. },
  1630. // 判断字符串是否是以end结尾
  1631. endWith: function(value, end) {
  1632. var reg = new RegExp(end + "$");
  1633. return reg.test(value)
  1634. },
  1635. // 数组去重
  1636. uniqueFn: function(array) {
  1637. var result = [];
  1638. var hashObj = {};
  1639. for (var i = 0; i < array.length; i++) {
  1640. if (!hashObj[array[i]]) {
  1641. hashObj[array[i]] = true;
  1642. result.push(array[i]);
  1643. }
  1644. }
  1645. return result;
  1646. },
  1647. // 数组中的所有元素放入一个字符串
  1648. join: function(array, separator) {
  1649. if ($.common.isEmpty(array)) {
  1650. return null;
  1651. }
  1652. return array.join(separator);
  1653. },
  1654. // 获取form下所有的字段并转换为json对象
  1655. formToJSON: function(formId) {
  1656. var json = {};
  1657. $.each($("#" + formId).serializeArray(), function(i, field) {
  1658. if(json[field.name]) {
  1659. json[field.name] += ("," + field.value);
  1660. } else {
  1661. json[field.name] = field.value;
  1662. }
  1663. });
  1664. return json;
  1665. },
  1666. // 数据字典转下拉框
  1667. dictToSelect: function(datas, value, name) {
  1668. var actions = [];
  1669. actions.push($.common.sprintf("<select class='form-control' name='%s'>", name));
  1670. $.each(datas, function(index, dict) {
  1671. actions.push($.common.sprintf("<option value='%s'", dict.dictValue));
  1672. if (dict.dictValue == ('' + value)) {
  1673. actions.push(' selected');
  1674. }
  1675. actions.push($.common.sprintf(">%s</option>", dict.dictLabel));
  1676. });
  1677. actions.push('</select>');
  1678. return actions.join('');
  1679. },
  1680. // 获取obj对象长度
  1681. getLength: function(obj) {
  1682. var count = 0;  
  1683. for (var i in obj) {
  1684. if (obj.hasOwnProperty(i)) {
  1685. count++;
  1686. }  
  1687. }
  1688. return count;
  1689. },
  1690. // 判断移动端
  1691. isMobile: function () {
  1692. return navigator.userAgent.match(/(Android|iPhone|SymbianOS|Windows Phone|iPad|iPod)/i);
  1693. },
  1694. // 数字正则表达式,只能为0-9数字
  1695. numValid : function(text){
  1696. var patten = new RegExp(/^[0-9]+$/);
  1697. return patten.test(text);
  1698. },
  1699. // 英文正则表达式,只能为a-z和A-Z字母
  1700. enValid : function(text){
  1701. var patten = new RegExp(/^[a-zA-Z]+$/);
  1702. return patten.test(text);
  1703. },
  1704. // 英文、数字正则表达式,必须包含(字母,数字)
  1705. enNumValid : function(text){
  1706. var patten = new RegExp(/^(?=.*[a-zA-Z]+)(?=.*[0-9]+)[a-zA-Z0-9]+$/);
  1707. return patten.test(text);
  1708. },
  1709. // 英文、数字、特殊字符正则表达式,必须包含(字母,数字,特殊字符!@#$%^&*()-=_+)
  1710. charValid : function(text){
  1711. var patten = new RegExp(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[~!@#\$%\^&\*\(\)\-=_\+])[A-Za-z\d~!@#\$%\^&\*\(\)\-=_\+]{6,}$/);
  1712. return patten.test(text);
  1713. },
  1714. }
  1715. });
  1716. })(jQuery);
  1717. /** 表格类型 */
  1718. table_type = {
  1719. bootstrapTable: 0,
  1720. bootstrapTreeTable: 1
  1721. };
  1722. /** 消息状态码 */
  1723. web_status = {
  1724. SUCCESS: 0,
  1725. FAIL: 500,
  1726. WARNING: 301
  1727. };
  1728. /** 弹窗状态码 */
  1729. modal_status = {
  1730. SUCCESS: "success",
  1731. FAIL: "error",
  1732. WARNING: "warning"
  1733. };