Commit d53fffd7 by li_hongchao

必中信息审核页面优化

parent 76d062d4
const _DEFAULT_KEYS = [
'公安厅',
'公安局',
......@@ -12,7 +11,14 @@ const _DEFAULT_KEYS = [
const _TAG = 'src/utils/ZzjgUtil.js'
export default {
formatContent(content) {
if (content && content.length <= 10) {
return content
}
let len = content.length
let last = this.lastZzjg(content, '')
return content.slice(0, 3) + '...' + last
},
last(content, defult = '...') {
if (content && content.length <= 10) {
return content
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment