|
@@ -266,6 +266,7 @@
|
|
|
align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span class="link2" @click="toPageDoctor(scope.row)">{{ scope.row.bl_sum }}</span>
|
|
|
+ <span v-if="scope.row.bl_sum">例</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -274,12 +275,17 @@
|
|
|
align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span class="link2" @click="toPageDoctorKf(scope.row)">{{ -scope.row.kf_score }}</span>
|
|
|
+ <span v-if="scope.row.kf_score">分</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="avg_score"
|
|
|
label="平均得分"
|
|
|
align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.avg_score }}</span>
|
|
|
+ <span v-if="scope.row.avg_score">分</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<el-pagination
|