|
@@ -122,17 +122,17 @@
|
|
|
</el-table-column> -->
|
|
|
<el-table-column label="评委1" min-width="10" align="center" v-if="$store.state.userInfo.role == 1">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{ scope.row.firstPw ? scope.row.firstPw : "-" }}</div>
|
|
|
+ <div>{{ scope.row.firstPw ? scope.row.firstPw+"-"+scope.row.firstPwP : "-" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="评委2" min-width="10" align="center" v-if="$store.state.userInfo.role == 1">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{ scope.row.secondPw ? scope.row.secondPw : "-" }}</div>
|
|
|
+ <div>{{ scope.row.secondPw ? scope.row.secondPw+"-"+scope.row.secondPwP : "-" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="评委3" min-width="10" align="center" v-if="$store.state.userInfo.role == 1">
|
|
|
<template slot-scope="scope">
|
|
|
- <div>{{ scope.row.thirdPw ? scope.row.thirdPw : "-" }}</div>
|
|
|
+ <div>{{ scope.row.thirdPw ? scope.row.thirdPw+"-"+scope.row.thirdPwP : "-" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="评分结果" min-width="10" align="center" v-if="$store.state.userInfo.role == 1">
|
|
@@ -540,12 +540,16 @@ export default {
|
|
|
}
|
|
|
sum += sumScore;
|
|
|
isScore++;
|
|
|
+
|
|
|
if (!p[j].firstPw) {
|
|
|
p[j].firstPw = sumScore;
|
|
|
+ p[j].firstPwP = scoreList[i].name;
|
|
|
} else if (!p[j].secondPw){
|
|
|
- p[j].secondPw = sumScore;
|
|
|
+ p[j].secondPw = sumScore;
|
|
|
+ p[j].secondPwP = scoreList[i].name;
|
|
|
} else if (!p[j].thirdPw){
|
|
|
- p[j].thirdPw = sumScore;
|
|
|
+ p[j].thirdPw = sumScore;
|
|
|
+ p[j].thirdPwP = scoreList[i].name;
|
|
|
}
|
|
|
}
|
|
|
}
|