diff --git a/src/views/portal/case/Index.vue b/src/views/portal/case/Index.vue index ccc5161c..a0c5b63d 100644 --- a/src/views/portal/case/Index.vue +++ b/src/views/portal/case/Index.vue @@ -52,9 +52,7 @@ {{ item.name }} - - @@ -80,7 +78,6 @@
-
@@ -89,13 +86,10 @@
-
-
-
@@ -104,17 +98,10 @@ {{ item.keyword3 }} {{ item.keyword4 }} {{ item.keyword5 }} -
- -
- {{displayAll(item)}} - - - {{item.isAll?'收起':'展开'}}
@@ -134,10 +121,8 @@ 没有查询到相关内容
-
- @@ -150,8 +135,6 @@
- - @@ -163,7 +146,6 @@ {{ item.sysCreateUname }} -
@@ -174,8 +156,6 @@
- - @@ -187,7 +167,6 @@ {{ item.title }} -
@@ -198,8 +177,6 @@
- - @@ -211,14 +188,12 @@ {{ item.title }} -
-
@@ -322,7 +297,6 @@ export default { searchTags: [] }; }, - mounted() { this.$nextTick(function() { this.closeSearch(); @@ -371,7 +345,6 @@ export default { }, //展示全部 displayAll(item) { - if (!item.isAll && item.summary && item.summary.length > 180) { return item.summary.slice(0, 180) + "..."; } @@ -393,7 +366,6 @@ export default { searchBoxHeght.style.height = "auto"; } }, - getAnkingData() { apiCase.usernameList(5).then(res => { if (res.status == 200) { @@ -414,11 +386,9 @@ export default { apiCase.queryComments(5).then(res => { if (res.status == 200) { this.Positive = res.result; - console.log(res); } }); }, - getdomain() { let key = "org_domain"; apiDict.items(key).then(res => { @@ -571,8 +541,11 @@ export default { if (i == "orgDomain") { this.queryCondition.orgDomain = null; } + if(i == 'keyWord') { + this.queryCondition.keyWord = ''; + this.keyWord = ''; + } this.queryCondition[i] = ""; - this.searchTags.splice(index, 1); this.getCaseData(); } @@ -621,7 +594,6 @@ export default { } }); }, - jumpRouter(item) { this.$router.push(`/case/detail?id=${item.id}`); }