...
|
...
|
@@ -196,8 +196,9 @@ |
|
|
<el-table-column align="center" prop="manufacturerName" label="处理厂商" width="150" show-overflow-tooltip/>
|
|
|
<el-table-column align="center" prop="isRead" label="接收状态" width="100" >
|
|
|
<template #default="scope">
|
|
|
<span v-if="scope.row.isRead == '0'">未读</span>
|
|
|
<!--<span v-if="scope.row.isRead == '0'">未读</span>-->
|
|
|
<span v-if="scope.row.isRead == '1'">已读</span>
|
|
|
<span v-else>未读</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="isRelated" label="自查结果" width="100" >
|
...
|
...
|
|