shop-box.vue
6.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<template>
<top-bar :share-data="shareData" :show-top-bar="showTopBar"></top-bar>
<shop-top :shop-info="shopInfo"></shop-top>
<div :class='{"shop-goods-top": !shopInfo.isBlkShop}'>
<goods-list :data="productList" :empty="empty"></goods-list>
</div>
<filter :config="filterConfig" v-ref:filter></filter>
<div id="timer" style="position: fixed; z-index: 100; bottom: 0">{{timer}}</div>
</template>
<style>
#shop {
.empty-tip {
margin-top: 40px;
}
}
</style>
<script>
const $ = require('jquery');
const qs = require('yoho-qs/parse');
const bus = require('common/vue-bus');
const tip = require('common/tip');
const topBar = require('product/shop/top-bar.vue'); // 顶部栏,包括返回、收藏店铺、分享,打开筛选页面
const shopTop = require('product/shop/shop-top.vue'); // 店铺头部信息
const goodsList = require('component/product/list.vue');
const filter = require('component/product/filter.vue');
const $shop = $('#shop');
const shareSubTitle = '我在BLK发现了一个不错的品牌,赶快来看看吧!';
let locationQuery = qs(decodeURIComponent(location.search.replace(/^\?/, '')));
module.exports = {
data() {
return {
shareData: {}, // 分享相关数据
shopInfo: {}, // 店铺介绍相关数据
timer: 0,
sortConfig: {},
filterConfig: {},
showTopBar: false,
// query
url: '/product/shop/goods.json',
filter: {
domain: $shop.data('domain')
},
page: 0, // page= 0 未搜索, 1 并且productList.length =0 没有数据, page = page_total 全部加载完
totalPage: null,
// 产品列表
productList: [],
// state:
inSearching: false
};
},
computed: {
empty: function() {
return this.page !== 0 && !this.productList.length;
}
},
watch: {
/* order 和 filter 改变 都会触发 重新搜索 (想象成清空所有分页) */
order: function() {
this.research();
},
filter: function() {
this.research();
}
},
methods: {
/* 获取店铺简介相关数据 */
getShopInfo() {
$.get({
// async: false,
url: '/product/shop/info.json',
data: {
domain: $shop.data('domain'),
shopId: $shop.data('shopid') // 店铺 ID
}
}).done(result => {
if (result) {
this.shopInfo = result;
this.shopInfo.showBrandInfo = true;
let shareUrl = locationQuery.id ?
location.origin + '/product/shop/favorite/share?id=' + locationQuery.id :
location.origin + '/product/shop/' + $shop.data('domain') + '/share';
this.shareData = {
title: result.shopName,
des: shareSubTitle,
url: shareUrl,
img: result.shopLogo ? result.shopLogo.split('?')[0] +
'?imageMogr2/thumbnail/300x300/format/jpg/quality/90' : '',
isBlkShop: result.isBlkShop,
domain: locationQuery.domain,
brandName: result.brandName,
brandId: result.brandId, // 不是分享的参数,收藏店铺使用
shopId: result.shopId, // 不是分享的参数,收藏店铺使用
isFav: result.isFav // 不是分享的参数,收藏店铺使用
};
} else {
this.shopInfo.showBrandInfo = false;
}
this.showTopBar = true;
}).fail(() => {
tip('网络出错~');
});
},
search: function() {
const self = this;
const nextPage = this.page + 1;
if (this.inSearching) {
return;
}
// page = 0, 始终执行搜索
if (this.page && nextPage > this.totalPage) {
return;
}
this.inSearching = true;
$.get(this.url, Object.assign({
page: nextPage
}, locationQuery, this.filter)).done(result => {
if (result.code === 200) {
self.page = result.data.page;
self.totalPage = result.data.pageTotal;
self.$set('productList', self.productList.concat(result.data.productList));
if ($.isEmptyObject(self.filterConfig)) {
self.$set('filterConfig', result.data.filter);
}
}
}).fail(() => {
tip('网络出错~');
}).always(() => {
self.inSearching = false;
});
},
research: function() {
this.page = 0;
this.$set('productList', []);
this.search();
}
},
components: {
topBar,
shopTop,
goodsList,
filter
},
created() {
const self = this;
this.getShopInfo();
this.search();
bus.$on('list.paging', () => {
this.search();
});
bus.$on('sort.change', ({
val
}) => {
this.sort = val;
});
/**
* 筛选组件 筛选值变更,触发 filter.change事件
* 1. 重新搜索
* 2. 关闭 filter 组件
*/
bus.$on('filter.change', function({val}) {
Object.assign(val, { domain: $shop.data('domain') });
self.$set('filter', val);
self.$refs.filter.isVisible = false;
});
},
init() {
setInterval(()=> {
this.timer = new Date().getTime();
}, 1)
}
};
</script>