Commit c80c9d5a162e087b2924779d3dac12fa18f8a29e

Authored by zhiyangdu
1 parent 63fb500e

统一UID

src/pages/pointsExchangeRecords/pointsExchangeRecords.vue
@@ -138,7 +138,7 @@ export default { @@ -138,7 +138,7 @@ export default {
138 this.http( 138 this.http(
139 "/Api/" + this.getApiVersion().LuckDraw + "/myLuckIntegralOrder", 139 "/Api/" + this.getApiVersion().LuckDraw + "/myLuckIntegralOrder",
140 { 140 {
141 - uid: this.$route.query.uid, 141 + uid: this.getStore("uid"),
142 page: page, 142 page: page,
143 type: "3" // 1亲子嘉年华 2 康疫健步 3 积分商城 143 type: "3" // 1亲子嘉年华 2 康疫健步 3 积分商城
144 }, 144 },
src/pages/pointsMall/pointsMall.vue
@@ -162,7 +162,7 @@ export default { @@ -162,7 +162,7 @@ export default {
162 this.$router.push({ 162 this.$router.push({
163 path: '/pointsExchangeRecords', 163 path: '/pointsExchangeRecords',
164 query: { 164 query: {
165 - uid: this.$route.query.uid, 165 + uid: this.getStore("uid"),
166 } 166 }
167 }) 167 })
168 }, 168 },