SearchLayout.vue 1.24 KB
<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" @jumpPage="emitSearchValue" />
    </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.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;
  }
  .history-container {
    flex: 1;
  }
}
</style>