|
@@ -436,7 +436,7 @@ export default {
|
436
|
436
|
|
437
|
437
|
await self.fn.init();
|
438
|
438
|
self.fn.shareMenu();
|
439
|
|
- self.keyword = self.$mp.query.title;
|
|
439
|
+ self.keyword = decodeURIComponent(self.$mp.query.title);
|
440
|
440
|
self.fn.setTitle(self.keyword);
|
441
|
441
|
this.tabClick(self.curTab);
|
442
|
442
|
},
|
|
@@ -447,11 +447,13 @@ export default {
|
447
|
447
|
...self.$mp.query,
|
448
|
448
|
shopId: this.activeShop.id,
|
449
|
449
|
uid: this.user.user.id,
|
|
450
|
+ title:self.keyword
|
450
|
451
|
};
|
451
|
452
|
|
452
|
453
|
if (this.activeShop.store) {
|
453
|
454
|
obj.storeId = this.activeShop.store.id;
|
454
|
455
|
}
|
|
456
|
+ console.log(self.router.getPath(self.$mp.page.route, obj),111)
|
455
|
457
|
return {
|
456
|
458
|
title: self.siteTitle,
|
457
|
459
|
path: self.router.getPath(self.$mp.page.route, obj),
|
|
@@ -933,6 +935,9 @@ export default {
|
933
|
935
|
|
934
|
936
|
// 数据计算
|
935
|
937
|
computed: {
|
|
938
|
+ activeShop() {
|
|
939
|
+ return this.$store.state.common.activeShop || {};
|
|
940
|
+ },
|
936
|
941
|
// 判断主题 1:红色 2:绿色
|
937
|
942
|
theme() {
|
938
|
943
|
return this.$store.state.common.theme;
|