zhangtao
laozt 1 year ago
parent e16cbb0e0d
commit 65f556d5c4

@ -131,9 +131,21 @@
<template slot-scope="scope">
<div
style="font-family: 'Alibaba PuHuiTi'"
:class="scope.row.checkStatus == '1' ? 'isStyle1' : 'isStyle'"
:class="
scope.row.checkStatus == '1'
? 'isStyle1'
: scope.row.checkStatus == '0'
? 'isStyle'
: ''
"
>
{{ scope.row.checkStatus == 1 ? "已检查" : "未检查" }}
{{
scope.row.checkStatus == 1
? "已检查"
: scope.row.checkStatus == 0
? "未检查"
: ""
}}
</div>
</template>
</el-table-column>

Loading…
Cancel
Save