ruoyi.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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) {
  54. var search = params;
  55. search.beginTime = "";
  56. search.endTime = "";
  57. if (null != dateRange && '' != dateRange) {
  58. search.beginTime = this.dateRange[0];
  59. search.endTime = this.dateRange[1];
  60. }
  61. return search;
  62. }
  63. // 回显数据字典
  64. export function selectDictLabel(datas, value) {
  65. var actions = [];
  66. Object.keys(datas).some((key) => {
  67. if (datas[key].dictValue == ('' + value)) {
  68. actions.push(datas[key].dictLabel);
  69. return true;
  70. }
  71. })
  72. return actions.join('');
  73. }
  74. // 回显数据字典(字符串数组)
  75. export function selectDictLabels (datas = {}, value = '', separator = ',') {
  76. const actions = []
  77. const temp = value.split(separator)
  78. temp.forEach((_, index) => {
  79. Object.keys(datas).forEach(key => {
  80. if (datas[key].dictValue === temp[index].toString()) {
  81. actions.push(datas[key].dictLabel)
  82. }
  83. })
  84. })
  85. return actions.join(separator)
  86. }
  87. // 通用下载方法
  88. export function download(fileName) {
  89. window.location.href = baseURL + "/common/download?fileName=" + encodeURI(fileName) + "&delete=" + true;
  90. }
  91. // 字符串格式化(%s )
  92. export function sprintf(str) {
  93. var args = arguments, flag = true, i = 1;
  94. str = str.replace(/%s/g, function () {
  95. var arg = args[i++];
  96. if (typeof arg === 'undefined') {
  97. flag = false;
  98. return '';
  99. }
  100. return arg;
  101. });
  102. return flag ? str : '';
  103. }
  104. // 转换字符串,undefined,null等转化为""
  105. export function praseStrEmpty(str) {
  106. if (!str || str == "undefined" || str == "null") {
  107. return "";
  108. }
  109. return str;
  110. }
  111. /**
  112. * 构造树型结构数据
  113. * @param {*} data 数据源
  114. * @param {*} id id字段 默认 'id'
  115. * @param {*} parentId 父节点字段 默认 'parentId'
  116. * @param {*} children 孩子节点字段 默认 'children'
  117. * @param {*} rootId 根Id 默认 0
  118. */
  119. export function handleTree(data = [], id = 'id', parentId = 'parentId', children = 'children', rootId = 0) {
  120. //对源数据深度克隆
  121. const cloneData = JSON.parse(JSON.stringify(data))
  122. //循环所有项
  123. const treeData = cloneData.filter(father => {
  124. const branchArr = cloneData.filter(child => {
  125. //返回每一项的子级数组
  126. return father[id] === child[parentId]
  127. });
  128. branchArr.length && (father.children = branchArr);
  129. //返回第一层
  130. return father[parentId] === rootId;
  131. });
  132. return treeData !== '' ? treeData : data;
  133. }