需要循环绑定key值

  1. import * as filters from './filters'
  2. /* Register global filters */
  3. Object.keys(filters).forEach(key => {
  4. Vue.filter(key, filters[key])
  5. })

1. 小数、整数转千分位(通用)

  1. /**
  2. * 小数、整数转千分位(通用)
  3. * @param {number} num 小数、整数
  4. * @returns {string} 格式化千分位后的数字 例: 22,111
  5. */
  6. export function formatTh(num) {
  7. if (!_.isFinite(parseFloat(num))) return '-'
  8. if (num.toString().indexOf('.') !== -1) {
  9. // 小数
  10. return num.toString().replace(/(\d)(?=(\d{3})+\.)/g, '$1,')
  11. } else {
  12. // 整数
  13. return num.toString().replace(/(\d)(?=(\d{3})+$)/g, $1 => {
  14. return $1 + ','
  15. })
  16. }
  17. }

2. html转义、代码块替换

  1. /**
  2. * html转义
  3. * @param {html} String html代码
  4. * @returns {string} html
  5. */
  6. export function htmlEncode(html) {
  7. let temp = document.createElement('div')
  8. temp.textContent !== undefined ? (temp.textContent = html) : (temp.innerText = html)
  9. const output = temp.innerHTML
  10. temp = null
  11. return output
  12. }

3. 时间显示转换

  1. import moment from 'dayjs'
  2. export function formatDate(date) {
  3. // 超过7天,显示日期
  4. if (moment(date).isBefore(moment().subtract(7, 'days'))) {
  5. return moment(date).format('YYYY-MM0DD')
  6. } else {
  7. // 1小时前,xx小时前,x天前
  8. return moment(date).local('zh-cn').form(moment())
  9. }
  10. }