ry-ui.js 58 KB

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