| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <div class="container">
- <categroy-nav></categroy-nav>
- <!--<category-property @loadCmpGoodsByBrandEvent="listemBrandFilter" @loadCmpGoodsByTypeEvent="listemProTypeFilter"></category-property>-->
- <component-goods :brandid="brandid" :propertyJSON="propertyJSON"></component-goods>
- </div>
- </template>
- <script>
- import { CategroyNav, CategoryProperty, ComponentGoods } from '~components/product'
- export default {
- layout: 'main',
- data () {
- return {
- brandid: '',
- propertyJSON: {}
- }
- },
- fetch ({store, route}) {
- return Promise.all([
- store.dispatch('product/loadKindParentsWithBothers', {id: route.params.id}),
- store.dispatch('product/loadKindBrands', {id: route.params.id}),
- store.dispatch('product/pageComGoods', {kindid: route.params.id})
- ])
- },
- components: {
- CategroyNav,
- CategoryProperty,
- ComponentGoods
- },
- methods: {
- loadPage (id) {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, brandid: id})
- },
- listemBrandFilter (brandid, propertyJSON) {
- this.brandid = brandid
- this.propertyJSON = propertyJSON
- console.log(this.brandid)
- if (brandid) {
- if (propertyJSON !== null && Object.getOwnPropertyNames(propertyJSON).length > 3) {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, brandid: brandid, properties: propertyJSON})
- } else {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, brandid: brandid})
- }
- } else if (propertyJSON !== null && Object.getOwnPropertyNames(propertyJSON).length > 3) {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, properties: propertyJSON})
- } else {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id})
- }
- },
- listemProTypeFilter (propertyJSON, brandid) {
- this.brandid = brandid
- this.propertyJSON = propertyJSON
- if (propertyJSON !== null && Object.getOwnPropertyNames(propertyJSON).length > 3) {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, brandid: brandid, properties: propertyJSON})
- } else {
- this.$store.dispatch('product/pageComGoods', {kindid: this.$route.params.id, brandid: brandid})
- }
- }
- }
- }
- </script>
- <style>
- .container {
- position: relative;
- width: 1190px;
- margin-right: auto;
- margin-left: auto;
- }
- </style>
|