From c35aac1d6b0dc03b25464ba3a4a416b3130a3b8f Mon Sep 17 00:00:00 2001 From: dsh <15569653818@163.com> Date: Tue, 23 Apr 2024 10:45:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/reward/score/index.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/reward/score/index.vue b/src/views/reward/score/index.vue index 0fdae03..3fb34bc 100644 --- a/src/views/reward/score/index.vue +++ b/src/views/reward/score/index.vue @@ -339,6 +339,7 @@ export default { score:undefined }; this.resetForm("form"); + this.scoreData=[] }, /** 搜索按钮操作 */ handleQuery() { @@ -397,9 +398,11 @@ export default { }, getScoreInfo(row){ getScoreInfo(row.applyId).then((res)=>{ - this.scoreId = res.data.rewScoreInfos[0].scoreId - this.form.score = res.data.rewScoreInfos[0].score - this.scoreData = res.data.rewScoreInfos + if (res.data.rewScoreInfos.length > 0){ + this.scoreId = res.data.rewScoreInfos[0].scoreId + this.form.score = res.data.rewScoreInfos[0].score + this.scoreData = res.data.rewScoreInfos + } this.avgScore = res.data.avgScore }) },