[update] 修改bug87973

This commit is contained in:
lideqin
2024-08-01 19:53:57 +08:00
parent 1154993a21
commit ed43f4913c
@@ -12,7 +12,7 @@
<a-divider>{{ $t('dashboard.advancedSearch.retrieveCategories') }}</a-divider>
<div class="filter-area-div" ref="filterArea">
<a-row :gutter="24" class="filter-row">
<a-col :md="2" class="label-col"><span class="search_label">{{ $t('dashboard.advancedSearch.searchType') }}</span></a-col>
<a-col :md="2" class="label-col" :title="$t('dashboard.advancedSearch.searchType')"><span class="search_label">{{ $t('dashboard.advancedSearch.searchType') }}</span></a-col>
<a-col :md="18" class="option-col">
<div v-for="item in standardTypeOptions" :key="item.value" class="option-div" :class="currStandardType === item.value ? 'option-curr' : ''" @click="standardTypeChange(item.value)">
{{ item.label }}
@@ -963,6 +963,9 @@ export default {
.label-col {
text-align: left;
color: #86909c;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.option-col {
width: calc(100% - 200px);