SearchLayout.vue 1.34 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="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: ''
    }
  },

  watch: {
    defKeyword (val, old) {
      this.keyword = val
    }
  },

  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;
  }
  .content-layout {
    flex: 1;
  }
}
</style>