|
@@ -129,7 +129,7 @@
|
129
|
129
|
店铺
|
130
|
130
|
</div>
|
131
|
131
|
<div @click="tabClick('1')" :class="{ on: curTab === '1' }">
|
132
|
|
- 优选
|
|
132
|
+ 厂商直邮
|
133
|
133
|
</div>
|
134
|
134
|
</div>
|
135
|
135
|
|
|
@@ -291,21 +291,22 @@ export default {
|
291
|
291
|
|
292
|
292
|
tabClick(v) {
|
293
|
293
|
this.curTab = v;
|
|
294
|
+ this.cateId = "";
|
294
|
295
|
},
|
295
|
296
|
|
296
|
|
- cateChange(cateId){
|
297
|
|
- console.log(cateId);
|
298
|
|
- this.cateId = cateId;
|
299
|
|
- }
|
|
297
|
+ cateChange(cateId) {
|
|
298
|
+ this.cateId = cateId;
|
|
299
|
+ },
|
300
|
300
|
},
|
301
|
301
|
onShareAppMessage() {
|
302
|
|
- let url = `/pages/goods/index?uid=${this.user.id}&shopId=${this.activeShop.id}&tab=${this.tab}`;
|
303
|
|
- if(this.cateId){
|
304
|
|
- url+=`&cateId=${this.cateId}`;
|
|
302
|
+ let url = `/pages/goods/index?uid=${this.user.id}&shopId=${this.activeShop.id}&tab=${this.curTab}`;
|
|
303
|
+ if (this.cateId) {
|
|
304
|
+ url += `&cateId=${this.cateId}`;
|
305
|
305
|
}
|
306
|
306
|
if (this.activeShop.store) {
|
307
|
307
|
url += `&storeId=${this.activeShop.store.id}`;
|
308
|
308
|
}
|
|
309
|
+ console.log(url, "share");
|
309
|
310
|
return {
|
310
|
311
|
title: this.activeShop.name || "",
|
311
|
312
|
path: url,
|