``clike
<!-- 是否涉及处罚 -->
<el-table-column
label="是否涉及处罚"
align="center"
prop="punish"
width="140"
:formatter="formatterPunish"
/>
<el-table-column
label="是否离职"
align="center"
width="80"
prop="punish"
>
<template slot-scope="scope">
<dict-tag :options="punishOptions" :value="scope.row.punish" />
</template>
</el-table-column>
<el-table-column
label="处罚信息"
align="center"
prop="information"
:show-overflow-tooltip="true"
/>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
formatterPunish(row, column) {
if (row.punish == “0”) {
return 是;
} else {
return 否;
}
},