Commit 4bac3856e177a9a699042fe8d1f0df981b3d6772

Authored by zhiyangdu
1 parent 16424ae9

uid

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