[fix 87933] 一般搜索名称过长
This commit is contained in:
@@ -33,6 +33,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
// 高级搜索
|
// 高级搜索
|
||||||
advancedSearch: {
|
advancedSearch: {
|
||||||
|
searchType: 'Search Type',
|
||||||
standardNum: 'Standard number',
|
standardNum: 'Standard number',
|
||||||
standardName: 'Regulation Name',
|
standardName: 'Regulation Name',
|
||||||
releaseDate: 'Published Date',
|
releaseDate: 'Published Date',
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
// 高级搜索
|
// 高级搜索
|
||||||
advancedSearch: {
|
advancedSearch: {
|
||||||
|
searchType: '搜索类型',
|
||||||
standardNum: '标准号',
|
standardNum: '标准号',
|
||||||
standardName: '标准名称',
|
standardName: '标准名称',
|
||||||
releaseDate: '发布日期',
|
releaseDate: '发布日期',
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<a-divider>{{ $t('dashboard.advancedSearch.retrieveCategories') }}</a-divider>
|
<a-divider>{{ $t('dashboard.advancedSearch.retrieveCategories') }}</a-divider>
|
||||||
<div class="filter-area-div" ref="filterArea">
|
<div class="filter-area-div" ref="filterArea">
|
||||||
<a-row :gutter="24" class="filter-row">
|
<a-row :gutter="24" class="filter-row">
|
||||||
<a-col :md="2" class="label-col"><span class="search_label">{{ $t('dashboard.advancedSearch.standardType') }}</span></a-col>
|
<a-col :md="2" class="label-col"><span class="search_label">{{ $t('dashboard.advancedSearch.searchType') }}</span></a-col>
|
||||||
<a-col :md="18" class="option-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)">
|
<div v-for="item in standardTypeOptions" :key="item.value" class="option-div" :class="currStandardType === item.value ? 'option-curr' : ''" @click="standardTypeChange(item.value)">
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
|
|||||||
@@ -908,6 +908,7 @@ export default {
|
|||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
max-height: calc(100% - 340px);
|
max-height: calc(100% - 340px);
|
||||||
|
max-width: 50%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user