diff --git a/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue b/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
index 2a72e97..def0113 100644
--- a/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
+++ b/project/sanjianxi/AppGreatPowerIntegral/AppGreatPowerIntegral.vue
@@ -20,7 +20,7 @@
diff --git a/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue b/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue
index f420276..8960a14 100644
--- a/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue
+++ b/project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue
@@ -21,24 +21,22 @@ export default {
return {
learningIntegral: '',
partyMemberId: '',
- id: '',
flag: false,
}
},
onLoad(o) {
this.partyMemberId = o.partyMemberId
- this.id = o.partyId
this.getIntegral()
},
methods: {
getIntegral() {
- this.$instance.post('/app/appparty/getPartyIntegralDetail',{
+ this.$instance.post('/app/appparty/getPartyIntegralDetail',null,{
params: {
- id: this.partyId,
+ id: this.partyMemberId,
}
}).then((res) => {
if(res?.data) {
- this.learningIntegral = { ...res.data.learningIntegral }
+ this.learningIntegral = res.data.learningIntegral
}
})
},