diff --git a/pages/modify-score/modify-score.vue b/pages/modify-score/modify-score.vue index 0fea6b5..637c966 100644 --- a/pages/modify-score/modify-score.vue +++ b/pages/modify-score/modify-score.vue @@ -405,11 +405,16 @@ export default { mask: true }) + // 获取场地ID + const app = getApp() + const venueId = app.globalData?.currentVenueId + const response = await dataAdapter.getData('modifyScore', { athleteId: this.athleteInfo.athleteId, modifierId: this.modifierId, modifiedScore: this.currentScore, - note: this.note + note: this.note, + venueId: venueId // 添加场地ID }) uni.hideLoading()