提交修改

dev
dsh 12 months ago
parent 491d7b00cc
commit c35aac1d6b

@ -339,6 +339,7 @@ export default {
score:undefined score:undefined
}; };
this.resetForm("form"); this.resetForm("form");
this.scoreData=[]
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
@ -397,9 +398,11 @@ export default {
}, },
getScoreInfo(row){ getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{ getScoreInfo(row.applyId).then((res)=>{
this.scoreId = res.data.rewScoreInfos[0].scoreId if (res.data.rewScoreInfos.length > 0){
this.form.score = res.data.rewScoreInfos[0].score this.scoreId = res.data.rewScoreInfos[0].scoreId
this.scoreData = res.data.rewScoreInfos this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore this.avgScore = res.data.avgScore
}) })
}, },

Loading…
Cancel
Save