CN-1219: 实体搜索页下方统计原型优化

This commit is contained in:
刘洪洪
2023-08-11 17:53:51 +08:00
parent 1492fe217c
commit 8b1e57eaa1
12 changed files with 108 additions and 33 deletions

View File

@@ -18,7 +18,7 @@
<div class="search__suffix-close" @click="cleanParams">
<i class="el-icon-error"></i>
</div>
<div class="search__suffix new-search__suffix" @click="search">
<div class="search__suffix" :class="showList ? 'new-search__suffix' : 'entity-explorer-search'" @click="search">
<i class="el-icon-search"></i>
</div>
</div>
@@ -42,7 +42,8 @@ export default {
name: 'TextMode',
props: {
columnList: Array,
str: String
str: String,
showList: Boolean
},
data () {
return {
@@ -230,4 +231,8 @@ export default {
margin-top: 9px !important;
}
}
.entity-explorer-search {
color: #3976CB;
margin-top: -2px;
}
</style>