Commit 4bac3856e177a9a699042fe8d1f0df981b3d6772

Authored by zhiyangdu
1 parent 16424ae9

uid

src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
... ... @@ -116,7 +116,7 @@ export default {
116 116 this.http(
117 117 "/Api/" + this.getApiVersion().LuckDraw + "/myLuckIntegralOrder",
118 118 {
119   - uid: this.getStore("uid"),
  119 + uid: this.$route.query.uid,
120 120 page: page,
121 121 type: "3" // 1亲子嘉年华 2 康疫健步 3 积分商城
122 122 },
... ...
src/pages/pointsMall/pointsMall.vue
... ... @@ -154,7 +154,7 @@ export default {
154 154 this.$router.push({
155 155 path: '/pointsExchangeRecords',
156 156 query: {
157   - uid: this.getStore("uid"),
  157 + uid: this.$route.query.uid,
158 158 }
159 159 })
160 160 },
... ...