132 lines
3.4 KiB
Vue
132 lines
3.4 KiB
Vue
<template>
|
||
<d-input
|
||
: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-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;" />
|
||
</template>
|
||
</d-input>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, onMounted, watch, onUnmounted, reactive } from 'vue';
|
||
import { useRoute, useRouter } from 'vue-router';
|
||
import microApp from '@micro-zoe/micro-app';
|
||
|
||
const route = useRoute();
|
||
const router = useRouter();
|
||
const searchStr = ref(route?.query?.val || '');
|
||
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();
|
||
return;
|
||
}
|
||
router.push({ name: 'Search', query: { val: searchStr.value || '', type: route?.query?.type || 'License' }});
|
||
};
|
||
const handleClear = () => {
|
||
router.push({ name: 'home' });
|
||
};
|
||
|
||
watch(() => route.query?.val, (newVal) => {
|
||
microApp.setData('micoro-app-homeweb-app', { type: 'search', data: newVal || '' });
|
||
});
|
||
|
||
const handleDataChange = ({ name, type, data }) => {
|
||
if (name === 'micoro-app-homeweb-app') {
|
||
if (type === 'keyword-change') {
|
||
searchStr.value = data;
|
||
}
|
||
if (type === 'route-change') {
|
||
//
|
||
}
|
||
}
|
||
};
|
||
|
||
onMounted(() => {
|
||
|
||
});
|
||
onUnmounted(() => {
|
||
|
||
});
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
@import 'devui-theme/styles-var/devui-var.scss';
|
||
|
||
.g-header-search {
|
||
border: 1px solid #5E7CE0;
|
||
background: #FFF;
|
||
//box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.05) inset;
|
||
&-icon {
|
||
opacity: .5;
|
||
transition: opacity .5s ease;
|
||
}
|
||
.devui-input--focus {
|
||
.g-header-search-icon {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
::v-deep .devui-input-slot__prepend{
|
||
width: 140px;
|
||
}
|
||
::v-deep .devui-input-slot__append{
|
||
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>
|