提交修改

dev
dsh 12 months ago
parent 491d7b00cc
commit c35aac1d6b

@ -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
})
},

Loading…
Cancel
Save