From 88a931976d4e5de6b81b6437942dba5ff590f1d6 Mon Sep 17 00:00:00 2001 From: DevOps Date: Thu, 25 Dec 2025 10:55:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A3=81=E5=88=A4=E9=95=BF=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E8=AF=84=E5=88=86=E6=97=B6=E4=BC=A0=E9=80=92venueId?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 配合后端修复,确保修改评分记录包含正确的场地ID --- pages/modify-score/modify-score.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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()