Blame view

ant-design-vue-jeecg/src/utils/filter.js 778 Bytes
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
import Vue from "vue";
import * as dayjs from "dayjs";

Vue.filter('NumberFormat', function (value) {
  if (!value) {
    return '0'
  }
  let intPartFormat = value.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,') //将整数部分逢三一断
  return intPartFormat
})
肖超群 authored
12
Vue.filter('dayjs', function (dataStr, pattern = 'YYYY-MM-DD HH:mm:ss') {
肖超群 authored
13
14
15
  return dayjs(dataStr).format(pattern)
})
肖超群 authored
16
Vue.filter('moment', function (dataStr, pattern = 'YYYY-MM-DD HH:mm:ss') {
肖超群 authored
17
18
19
20
21
  return dayjs(dataStr).format(pattern)
})

/** 字符串超长截取省略号显示 */
Vue.filter('ellipsis', function (value, vlength = 25) {
肖超群 authored
22
  if (!value) {
肖超群 authored
23
24
    return "";
  }
肖超群 authored
25
  console.log('vlength: ' + vlength);
肖超群 authored
26
27
28
29
30
  if (value.length > vlength) {
    return value.slice(0, vlength) + '...'
  }
  return value
})