diff --git a/src/views/portal/case/Index.vue b/src/views/portal/case/Index.vue index cd3af70e..37eb48d2 100644 --- a/src/views/portal/case/Index.vue +++ b/src/views/portal/case/Index.vue @@ -96,7 +96,7 @@ {{displayAll(item)}} - + {{item.isAll?'收起':'展开'}} @@ -373,8 +373,8 @@ export default { }, //展示全部 displayAll(item) { - if (!item.isAll && item.summary && item.summary.length > 180) { - return item.summary.slice(0, 180) + "..."; + if (!item.isAll && item.summary && item.summary.length > 150) { + return item.summary.slice(0, 150) + "..."; } return item.summary; },