diff --git a/src/views/archiveUtilize/archiveSearch/index.vue b/src/views/archiveUtilize/archiveSearch/index.vue index edd238f..f39744e 100644 --- a/src/views/archiveUtilize/archiveSearch/index.vue +++ b/src/views/archiveUtilize/archiveSearch/index.vue @@ -34,7 +34,7 @@

历史检索

- {{ item }} + {{ item }}
@@ -377,6 +377,11 @@ export default { }, dimSearch() { }, + historySearch(item) { + this.keywords = item + this.handleSearch() + }, + handleSearch() { if (this.keywords) { this.isResult = true @@ -566,6 +571,10 @@ export default { background: #E6E8ED; border-radius: 3px; cursor:default; + &:hover{ + background: #0348F3; + color: #fff; + } } } } diff --git a/src/views/archivesMIOD/miodSearch/index.vue b/src/views/archivesMIOD/miodSearch/index.vue index e84acbb..1e4ae57 100644 --- a/src/views/archivesMIOD/miodSearch/index.vue +++ b/src/views/archivesMIOD/miodSearch/index.vue @@ -34,7 +34,7 @@

历史检索

- {{ item }} + {{ item }}
@@ -379,6 +379,10 @@ export default { }, dimSearch() { }, + historySearch(item) { + this.keywords = item + this.handleSearch() + }, handleSearch() { if (this.keywords) { this.isResult = true @@ -568,7 +572,11 @@ export default { color: #545B65; background: #E6E8ED; border-radius: 3px; - cursor:default; + cursor:default;; + &:hover{ + background: #0348F3; + color: #fff; + } } } }