ruoyi.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /**
  2. * 通用js方法封装处理
  3. * Copyright (c) 2019 ruoyi
  4. */
  5. const baseURL = process.env.VUE_APP_BASE_API
  6. // 日期格式化
  7. export function parseTime(time, pattern) {
  8. if (arguments.length === 0 || !time) {
  9. return null
  10. }
  11. const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
  12. let date
  13. if (typeof time === 'object') {
  14. date = time
  15. } else {
  16. if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
  17. time = parseInt(time)
  18. } else if (typeof time === 'string') {
  19. time = time.replace(new RegExp(/-/gm), '/');
  20. }
  21. if ((typeof time === 'number') && (time.toString().length === 10)) {
  22. time = time * 1000
  23. }
  24. date = new Date(time)
  25. }
  26. const formatObj = {
  27. y: date.getFullYear(),
  28. m: date.getMonth() + 1,
  29. d: date.getDate(),
  30. h: date.getHours(),
  31. i: date.getMinutes(),
  32. s: date.getSeconds(),
  33. a: date.getDay()
  34. }
  35. const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
  36. let value = formatObj[key]
  37. // Note: getDay() returns 0 on Sunday
  38. if (key === 'a') { return ['日', '一', '二', '三', '四', '五', '六'][value] }
  39. if (result.length > 0 && value < 10) {
  40. value = '0' + value
  41. }
  42. return value || 0
  43. })
  44. return time_str
  45. }
  46. // 表单重置
  47. export function resetForm(refName) {
  48. if (this.$refs[refName]) {
  49. this.$refs[refName].resetFields();
  50. }
  51. }
  52. // 添加日期范围
  53. export function addDateRange(params, dateRange, propName) {
  54. let search = params;
  55. search.params = typeof (search.params) === 'object' && search.params !== null && !Array.isArray(search.params) ? search.params : {};
  56. dateRange = Array.isArray(dateRange) ? dateRange : [];
  57. if (typeof (propName) === 'undefined') {
  58. search.params['beginTime'] = dateRange[0];
  59. search.params['endTime'] = dateRange[1];
  60. } else {
  61. search.params['begin' + propName] = dateRange[0];
  62. search.params['end' + propName] = dateRange[1];
  63. }
  64. return search;
  65. }
  66. // 回显数据字典
  67. export function selectDictLabel(datas, value) {
  68. var actions = [];
  69. Object.keys(datas).some((key) => {
  70. if (datas[key].dictValue == ('' + value)) {
  71. actions.push(datas[key].dictLabel);
  72. return true;
  73. }
  74. })
  75. return actions.join('');
  76. }
  77. // 回显数据字典(字符串数组)
  78. export function selectDictLabels(datas, value, separator) {
  79. var actions = [];
  80. var currentSeparator = undefined === separator ? "," : separator;
  81. var temp = value.split(currentSeparator);
  82. Object.keys(value.split(currentSeparator)).some((val) => {
  83. Object.keys(datas).some((key) => {
  84. if (datas[key].dictValue == ('' + temp[val])) {
  85. actions.push(datas[key].dictLabel + currentSeparator);
  86. }
  87. })
  88. })
  89. return actions.join('').substring(0, actions.join('').length - 1);
  90. }
  91. // 通用下载方法
  92. export function download(fileName) {
  93. window.location.href = baseURL + "/common/download?fileName=" + encodeURI(fileName) + "&delete=" + true;
  94. }
  95. // 字符串格式化(%s )
  96. export function sprintf(str) {
  97. var args = arguments, flag = true, i = 1;
  98. str = str.replace(/%s/g, function () {
  99. var arg = args[i++];
  100. if (typeof arg === 'undefined') {
  101. flag = false;
  102. return '';
  103. }
  104. return arg;
  105. });
  106. return flag ? str : '';
  107. }
  108. // 转换字符串,undefined,null等转化为""
  109. export function praseStrEmpty(str) {
  110. if (!str || str == "undefined" || str == "null") {
  111. return "";
  112. }
  113. return str;
  114. }
  115. /**
  116. * 构造树型结构数据
  117. * @param {*} data 数据源
  118. * @param {*} id id字段 默认 'id'
  119. * @param {*} parentId 父节点字段 默认 'parentId'
  120. * @param {*} children 孩子节点字段 默认 'children'
  121. */
  122. export function handleTree(data, id, parentId, children) {
  123. let config = {
  124. id: id || 'id',
  125. parentId: parentId || 'parentId',
  126. childrenList: children || 'children'
  127. };
  128. var childrenListMap = {};
  129. var nodeIds = {};
  130. var tree = [];
  131. for (let d of data) {
  132. let parentId = d[config.parentId];
  133. if (childrenListMap[parentId] == null) {
  134. childrenListMap[parentId] = [];
  135. }
  136. nodeIds[d[config.id]] = d;
  137. childrenListMap[parentId].push(d);
  138. }
  139. for (let d of data) {
  140. let parentId = d[config.parentId];
  141. if (nodeIds[parentId] == null) {
  142. tree.push(d);
  143. }
  144. }
  145. for (let t of tree) {
  146. adaptToChildrenList(t);
  147. }
  148. function adaptToChildrenList(o) {
  149. if (childrenListMap[o[config.id]] !== null) {
  150. o[config.childrenList] = childrenListMap[o[config.id]];
  151. }
  152. if (o[config.childrenList]) {
  153. for (let c of o[config.childrenList]) {
  154. adaptToChildrenList(c);
  155. }
  156. }
  157. }
  158. return tree;
  159. }