Commit e500a9a42d8891375bde58ef0995919a23749523

Authored by zhiyangdu
2 parents 00f80ee9 a02bca1b

Merge branch 'version_2.0.0_optimization_mall_update' of http://bj.gitlab.cnlive…

….com/w-front-end/select_good into version_2.0.0_optimization_mall_update
src/pages/labourUnion/labourUnion.vue
... ... @@ -120,6 +120,7 @@
120 120 INIT: "init", // 初始化页面
121 121 LOAD_MORE: "loadMore" // 加载更多
122 122 },
  123 + activityCode: 'ds_fwh_203', // 页面渠道码
123 124 tabs: { // tabs设置
124 125 fixed: false, // 是否吸顶
125 126 offsetTop: 0, // 距离顶部距离
... ... @@ -494,7 +495,9 @@
494 495 };
495 496  
496 497 // 通用跳转
497   - this.$parent.gotoDetail(params);
  498 + this.$parent.gotoDetail(params, {
  499 + activityCode: this.activityCode ? this.activityCode : '' // 添加页面渠道码
  500 + });
498 501 }
499 502 } else {
500 503  
... ...
src/pages/labourUnion2/labourUnion2.vue
... ... @@ -150,6 +150,7 @@
150 150 INIT: "init", // 初始化页面
151 151 LOAD_MORE: "loadMore" // 加载更多
152 152 },
  153 + activityCode: 'ds_fwh_203', // 页面渠道码
153 154 tabs: { // tabs设置
154 155 fixed: false, // 是否吸顶
155 156 offsetTop: 0, // 距离顶部距离
... ... @@ -693,7 +694,9 @@
693 694 };
694 695  
695 696 // 通用跳转
696   - this.$parent.gotoDetail(params);
  697 + this.$parent.gotoDetail(params, {
  698 + activityCode: this.activityCode ? this.activityCode : '' // 添加页面渠道码
  699 + });
697 700 }
698 701 } else {
699 702  
... ...