|
@@ -120,22 +120,22 @@
|
|
|
<div>{{ scope.row.scoreName ? scope.row.scoreName : "-" }}</div>
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
- <el-table-column label="评委1" min-width="10" align="center">
|
|
|
+ <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>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评委2" min-width="10" align="center">
|
|
|
+ <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>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评委3" min-width="10" align="center">
|
|
|
+ <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>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评分结果" min-width="10" align="center">
|
|
|
+ <el-table-column label="评分结果" min-width="10" align="center" v-if="$store.state.userInfo.role == 1">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.sum ? scope.row.sum : "-" }}</div>
|
|
|
</template>
|
|
@@ -168,7 +168,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div class="tableButton">
|
|
|
<div @click="lookDetail(scope.row.id)">案例详情</div>
|
|
|
- <div @click="openScore(scope.row, 1)">立即评分</div>
|
|
|
+ <div @click="openScore(scope.row, 1)" v-if="$store.state.userInfo.role == 1">立即评分</div>
|
|
|
<!-- <div @click="openScore(scope.row, 2)">推荐</div> -->
|
|
|
</div>
|
|
|
</template>
|
|
@@ -840,7 +840,7 @@ export default {
|
|
|
}
|
|
|
acc[cur.rid].push(cur.score);
|
|
|
return acc;
|
|
|
- }, {});
|
|
|
+ }, {});suo
|
|
|
|
|
|
// 计算每组的first、second和third的平均值,并将结果存储在新的数组b中
|
|
|
var b = Object.keys(grouped).map(function (key) {
|