SearchLayout.vue
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
<div class="search-layout nafmii-head-bg3">
<nafm-header navClass="nafmii-head-bg3">
<SearchInput class="search-input" v-model="keyword" :placeholder="$t('home.searchPlaceholder')" @search="handleSearch" />
</nafm-header>
<div class="history-container" v-if="history">
<SearchHistory stateKey="Home" />
</div>
<SearchDataLayout v-else />
</div>
</template>
<script>
import SearchInput from '@/components/SearchInput'
import SearchHistory from '@/components/SearchHistory'
import SearchDataLayout from './SearchDataLayout'
export default {
name: 'HomeSearch',
components: { SearchInput, SearchHistory, SearchDataLayout },
props: {
history: Boolean,
defKeyword: String
},
data () {
return {
keyword: this.defKeyword,
}
},
methods: {
handleSearch (val) {
this.$store.dispatch('search/APushHomeSearchValue', val)
this.$emit('search', val)
}
}
}
</script>
<style lang="less" scoped>
.search-layout {
height: 100%;
display: flex;
flex-direction: column;
.search-input {
width: 100%;
padding-left: 40px;
}
.history-container {
flex: 1;
}
}
</style>