tool.ts 3.69 KB
/**
 * 页面回退
 */
 export function back() {
  history.go(-1)
}

/**
 * 表单重置
 * @param {String} formName 表单名称
 */
 export function resetForm(formName) {
  this.$refs[formName].resetFields()
}

/**
 * 保留小数点两位
 * @param {number} x 进行保留的数字
 * @returns {number} s 小数点两位
 */

 function toDecimal2(x) {
  var f = parseFloat(x)
  if (isNaN(f)) {
    return false
  }
  f = Math.round(x * 100) / 100
  var s = f.toString()
  var rs = s.indexOf('.')
  if (rs < 0) {
    rs = s.length
    s += '.'
  }
  while (s.length <= rs + 2) {
    s += '0'
  }
  return s
}

/**
 * 日期转换
 * @param {(Object|string|number)} time 时间
 * @param {string} cFormat 转换格式
 * @returns {string | null}
 */
 export function parseTime(time, cFormat) {
  if (arguments.length === 0 || !time) {
    return null
  }
  const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
  let date
  if (typeof time === 'object') {
    date = time
  } else {
    if (typeof time === 'string') {
      if (/^[0-9]+$/.test(time)) {
        // support "1548221490638"
        time = parseInt(time)
      } else {
        // support safari
        // https://stackoverflow.com/questions/4310953/invalid-date-in-safari
        time = time.replace(new RegExp(/-/gm), '/')
      }
    }

    if (typeof time === 'number' && time.toString().length === 10) {
      time = time * 1000
    }
    date = new Date(time)
  }
  const formatObj = {
    y: date.getFullYear(),
    m: date.getMonth() + 1,
    d: date.getDate(),
    h: date.getHours(),
    i: date.getMinutes(),
    s: date.getSeconds(),
    a: date.getDay()
  }
  const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
    const value = formatObj[key]
    // Note: getDay() returns 0 on Sunday
    if (key === 'a') {
      return ['日', '一', '二', '三', '四', '五', '六'][value]
    }
    return value.toString().padStart(2, '0')
  })
  return time_str
}

/**
 * 时间转换
 * @param {number} time
 * @param {string} option
 * @returns {string}
 */
export function formatTime(time, option) {
  if (('' + time).length === 10) {
    time = parseInt(time) * 1000
  } else {
    time = +time
  }
  const d = new Date(time)
  const now = Date.now()

  const diff = (<any>now - <any>d) / 1000

  if (diff < 30) {
    return '刚刚'
  } else if (diff < 3600) {
    // less 1 hour
    return Math.ceil(diff / 60) + '分钟前'
  } else if (diff < 3600 * 24) {
    return Math.ceil(diff / 3600) + '小时前'
  } else if (diff < 3600 * 24 * 2) {
    return '1天前'
  }
  if (option) {
    return parseTime(time, option)
  } else {
    return (
      d.getMonth() +
      1 +
      '月' +
      d.getDate() +
      '日' +
      d.getHours() +
      '时' +
      d.getMinutes() +
      '分'
    )
  }
}

/**
 * @typeof {object} EnumData
 * @property {number} value
 * @property {string} label
 */
/**
 * 表格中枚举值filter
 * @param {number} value
 * @param {Array.EnumData} groupData
 * @returns {string}
 */
interface EnumData {
  value: number,
  label: string
}
export function globalFilters (value: number, groupData: EnumData[]) {
  if(groupData.length && (value === 0 || !!value)) {
    return groupData.find(item => item.value === value)['label']
  } else {
    return value
  }
}

/**
 * 请求参数包formData
 * @param {object} data
 * @returns {FormData} fd
 */
export function formDataWrapper (data: any) {
  const fd: any = new FormData()
  for (let i in data) {
    fd.append(i, data[i])
  }
  return fd
}

/**
 * 请求参数删除为null的
 * @param {object} data
 * @returns {FormData} fd
 */
 export function deleteEmptyParam (params: any) {
  for (const i in params) {
    if (!(params[i] + '').trim()) {
      delete params[i]
    }
  }
  return params
}