From 432c0fdb90872dc73f1c2cbbd74c29604c604a80 Mon Sep 17 00:00:00 2001
From: shijingjing <1789544664@qq.com>
Date: Thu, 21 Apr 2022 09:19:18 +0800
Subject: [PATCH] 29230
---
.../AppGreatPowerIntegral/AppGreatPowerIntegral.vue | 2 +-
project/sanjianxi/AppGreatPowerIntegral/editIntegral.vue | 8 +++-----
2 files changed, 4 insertions(+), 6 deletions(-)
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
}
})
},