ry-ui.js 66 KB

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