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