improve ui

This commit is contained in:
liangping 2021-09-14 10:55:22 +08:00
parent 74c7d29875
commit fb6c5d80e2

View File

@ -59,8 +59,8 @@ export default {
if (reg.test(value)) { if (reg.test(value)) {
return toDay(value) return toDay(value)
} }
if (value.length > 30) { if (value.length > 40) {
return value.substring(0, 30).concat('...') return value.substring(0, 40).concat('...')
} }
return value return value
}, },