diff --git a/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue b/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue index bd23708..2a72e97 100644 --- a/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue +++ b/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue @@ -20,7 +20,7 @@
-
修改学习强国
+
修改学习强国
@@ -48,7 +48,7 @@ export default { getIntegral() { this.$instance.post('/app/appparty/getPartyIntegralDetail',null,{ params: { - id: this.user.id, + id: this.user.partyId, } }).then((res) => { if(res?.data) { diff --git a/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue b/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue index 201442c..4f1b6b8 100644 --- a/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue +++ b/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue @@ -3,7 +3,7 @@
*学习强国
- +
@@ -27,13 +27,14 @@ export default { }, onLoad(o) { this.partyMemberId = o.partyMemberId - this.id = o.id + this.id = o.partyId + this.getIntegral() }, methods: { getIntegral() { this.$instance.post('/app/appparty/getPartyIntegralDetail',{ params: { - id: this.id, + id: this.partyId, } }).then((res) => { if(res?.data) { @@ -69,12 +70,13 @@ export default {