|
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
})
|
|
12
|
Vue.filter('dayjs', function (dataStr, pattern = 'YYYY-MM-DD HH:mm:ss') {
|
|
13
14
15
|
return dayjs(dataStr).format(pattern)
})
|
|
16
|
Vue.filter('moment', function (dataStr, pattern = 'YYYY-MM-DD HH:mm:ss') {
|
|
17
18
19
20
21
|
return dayjs(dataStr).format(pattern)
})
/** 字符串超长截取省略号显示 */
Vue.filter('ellipsis', function (value, vlength = 25) {
|
|
22
|
if (!value) {
|
|
23
24
|
return "";
}
|
|
25
|
console.log('vlength: ' + vlength);
|
|
26
27
28
29
30
|
if (value.length > vlength) {
return value.slice(0, vlength) + '...'
}
return value
})
|