| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <template>
- <div class="container" id="searchResult">
- <detail-brand></detail-brand>
- <result-title :keyword="key"></result-title>
- <kind @kindFilterEvent="listenKindFilter"
- @brandFilterEvent="listenBrandFilter"
- @typeFilterEvent="listenTypeFilter"
- @crnameFilterEvent="listenCrnameFilter"
- @crnameFlagEvent="listenCrnameFlag"
- ></kind>
- <good-list @pageEvent="listenPage"
- @sortEvent="listenSort"
- @filterPriceEvent="listenPriceFilter"
- :crname_click_flag="crname_click_flag"
- ></good-list>
- </div>
- </template>
- <script>
- import { GoodList, Kind, ResultTitle } from '~components/search'
- import DetailBrand from '~components/search/DetailBrand.vue'
- export default{
- layout: 'main',
- data () {
- return {
- key: this.$route.query.w,
- pageSize: 15,
- nowPage: 1,
- sorting: {'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'},
- filter: {},
- paramJSON: {},
- crname_click_flag: {
- rmb_click_flag: false,
- usd_click_flag: false
- }
- }
- },
- fetch ({store, route}) {
- return Promise.all([
- store.dispatch('searchData/searchForKinds', {collectList: 'goods_kind', keyword: route.query.w, paramJSON: {}}),
- store.dispatch('searchData/searchForBrands', {collectList: 'goods_brand', keyword: route.query.w, paramJSON: {}}),
- store.dispatch('searchData/searchForList', {count: 15, filter: {}, keyword: route.query.w, page: 1, sorting: {'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}}),
- store.dispatch('searchData/searchForStoreType', {collectList: 'goods_store_type', keyword: route.query.w, paramJSON: {}}),
- store.dispatch('searchData/searchForCrname', {collectList: 'goods_crname', keyword: route.query.w, paramJSON: {}})
- ])
- },
- components: {
- ResultTitle,
- Kind,
- GoodList,
- DetailBrand
- },
- methods: {
- reloadList: function () {
- if (this.sorting === {}) {
- this.sorting = {'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}
- }
- this.$store.dispatch('searchData/searchForList', {count: this.pageSize, filter: this.filter, keyword: this.$route.query.w, page: this.nowPage, sorting: this.sorting})
- },
- reloadKind: function () {
- this.$store.dispatch('searchData/searchForKinds', {collectList: 'goods_kind', keyword: this.$route.query.w, paramJSON: this.paramJSON})
- },
- reloadBrand: function () {
- this.$store.dispatch('searchData/searchForBrands', {collectList: 'goods_brand', keyword: this.$route.query.w, paramJSON: this.paramJSON})
- },
- reloadStoreType: function () {
- this.$store.dispatch('searchData/searchForStoreType', {collectList: 'goods_store_type', keyword: this.$route.query.w, paramJSON: this.paramJSON})
- },
- reloadCrname: function () {
- this.$store.dispatch('searchData/searchForCrname', {collectList: 'goods_crname', keyword: this.$route.query.w, paramJSON: this.paramJSON})
- },
- listenPage: function (nPage) {
- this.nowPage = nPage
- this.reloadList()
- },
- listenSort: function (sortType) {
- this.sorting = sortType
- this.reloadList()
- },
- listenPriceFilter: function (filterType) {
- if (filterType.goods_minpricermb) {
- this.filter.goods_minpricermb = filterType.goods_minpricermb
- } else {
- delete this.filter.goods_minpricermb
- }
- if (filterType.goods_maxpricermb) {
- this.filter.goods_maxpricermb = filterType.goods_maxpricermb
- } else {
- delete this.filter.goods_maxpricermb
- }
- this.reloadList()
- },
- listenKindFilter: function (kindarr) {
- console.log(kindarr.length)
- if (kindarr.length === 0) {
- delete this.filter.goods_kindId
- delete this.paramJSON.goods_kindid
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadStoreType()
- this.reloadCrname()
- } else {
- this.filter.goods_kindId = kindarr
- this.paramJSON.goods_kindid = kindarr
- this.reloadBrand()
- this.reloadList()
- this.reloadStoreType()
- this.reloadCrname()
- }
- },
- listenBrandFilter: function (brandarr) {
- if (brandarr.length === 0) {
- delete this.filter.goods_brandId
- delete this.paramJSON.goods_brandid
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadStoreType()
- this.reloadCrname()
- } else {
- this.filter.goods_brandId = brandarr
- this.paramJSON.goods_brandid = brandarr
- this.reloadKind()
- this.reloadList()
- this.reloadStoreType()
- this.reloadCrname()
- }
- },
- listenTypeFilter: function (typearr) {
- if (typearr.length === 0) {
- delete this.filter.goods_store_type
- delete this.paramJSON.goods_store_type
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadCrname()
- } else {
- this.filter.goods_store_type = typearr
- this.paramJSON.goods_store_type = typearr
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadCrname()
- }
- },
- listenCrnameFilter: function (crnamearr) {
- if (crnamearr.length === 0) {
- delete this.filter.goods_crname
- delete this.paramJSON.goods_crname
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadStoreType()
- } else {
- this.filter.goods_crname = crnamearr
- this.paramJSON.goods_crname = crnamearr
- this.reloadKind()
- this.reloadBrand()
- this.reloadList()
- this.reloadStoreType()
- }
- },
- listenCrnameFlag: function (obj) {
- this.crname_click_flag.rmb_click_flag = obj.rmb_click_flag
- this.crname_click_flag.usd_click_flag = obj.usd_click_flag
- }
- }
- }
- </script>
|