SearchLayout.vue
1.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<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="content-layout">
<SearchHistory v-if="history" stateKey="Home" @jumpPage="emitSearchValue" />
<SearchDataLayout v-else :data="searchData" />
</div>
</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,
searchData: Object
},
data () {
return {
keyword: '',
lastKeyword: null
}
},
watch: {
defKeyword (val, old) {
this.keyword = val
}
},
methods: {
handleSearch (val) {
if (val != this.lastKeyword) {
this.$store.dispatch('search/APushHomeSearchValue', val)
this.lastKeyword = val
}
this.emitSearchValue(val)
},
emitSearchValue (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;
}
.content-layout {
flex: 1;
}
}
</style>