|
@@ -7075,19 +7075,19 @@
|
|
|
stripe
|
|
|
style="width: 100%"
|
|
|
>
|
|
|
- <el-table-column label="评价名称" width="180">
|
|
|
+ <el-table-column label="评价名称" width="180" align="center">
|
|
|
<template slot-scope="scope"
|
|
|
><div>{{ scope.row.value }}</div></template
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="评价描述" width="180">
|
|
|
+ <el-table-column label="评价描述" width="180" align="center">
|
|
|
<template slot-scope="scope"
|
|
|
- ><div>{{ scope.row.detail }}</div></template
|
|
|
+ ><div>{{ scope.row.detail != "" ? scope.row.detail : "-" }}</div></template
|
|
|
>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="目标">
|
|
|
+ <el-table-column label="目标" align="center">
|
|
|
<template slot-scope="scope"
|
|
|
- ><div>{{ scope.row.target[0] }}</div></template
|
|
|
+ ><div>{{ scope.row.target ? scope.row.target[0] : "-" }}</div></template
|
|
|
></el-table-column
|
|
|
>
|
|
|
</el-table>
|