fix: 修复issue
This commit is contained in:
@@ -3,7 +3,30 @@
|
||||
:key="$route.path + $route.query?.val" id="golbalSearch" class="g-header-search"
|
||||
v-model.trim="searchStr" placeholder="输入搜索内容..." @keyup.enter="search" @clear="handleClear" clearable >
|
||||
<template #prepend>
|
||||
<d-select v-model="searchType" :options="options"></d-select>
|
||||
<d-dropdown @toggle="onCateToggle($event)">
|
||||
<div class="flex items-center gap-1 cursor-pointer">
|
||||
{{ searchType }}
|
||||
<d-icon :rotate="cateRotate" name="icon-chevron-down-2"></d-icon>
|
||||
</div>
|
||||
<template #menu>
|
||||
<ul class="list-menu">
|
||||
<li class="menu-item" @click="onCategoryChange('组件/软件')">组件/软件</li>
|
||||
<d-dropdown :position="position" :offset="0">
|
||||
<li class="menu-item">
|
||||
行业
|
||||
<i class="icon icon-chevron-right"></i>
|
||||
</li>
|
||||
<template #menu>
|
||||
<ul class="list-menu">
|
||||
<li class="menu-item" v-for="option in industryOptions" @click="onCategoryChange(option)">
|
||||
{{ option }}
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
</d-dropdown>
|
||||
</ul>
|
||||
</template>
|
||||
</d-dropdown>
|
||||
</template>
|
||||
<template #append>
|
||||
<d-icon @click="search" name="search" style="font-size: inherit;" />
|
||||
@@ -19,11 +42,16 @@ import microApp from '@micro-zoe/micro-app';
|
||||
const route = useRoute();
|
||||
const router = useRouter();
|
||||
const searchStr = ref(route?.query?.val || '');
|
||||
const searchType = ref('License');
|
||||
const options = reactive(['License']);
|
||||
const searchType = ref('组件/软件');
|
||||
const position = ref(['right-start', 'right-end']);
|
||||
const industryOptions = ref(['通信', '军工', '金融', '能源']);
|
||||
|
||||
const placeholder = ref('「开搜」:一搜即达,开发者的AI搜索');
|
||||
|
||||
const onCategoryChange = (event) => {
|
||||
searchType.value = event;
|
||||
}
|
||||
|
||||
const search = () => {
|
||||
if (!searchStr.value) {
|
||||
document.querySelector('#golbalSearch').blur();
|
||||
@@ -81,4 +109,23 @@ onUnmounted(() => {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
padding: 4px;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
background-color: var(--devui-list-item-hover-bg, #f2f5fc);
|
||||
color: var(--devui-list-item-hover-text, #526ecc);
|
||||
}
|
||||
}
|
||||
|
||||
.list-menu {
|
||||
padding: 8px;
|
||||
margin: 0;
|
||||
width: 100px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user