|
@@ -70,9 +70,21 @@
|
|
|
<el-table-column label="责任通知名称" prop="responsibilityName" width="180" />
|
|
<el-table-column label="责任通知名称" prop="responsibilityName" width="180" />
|
|
|
<el-table-column label="状态" prop="statusName" width="100" />
|
|
<el-table-column label="状态" prop="statusName" width="100" />
|
|
|
<!-- <el-table-column label="类型" prop="safetyAreaName" width="180" /> -->
|
|
<!-- <el-table-column label="类型" prop="safetyAreaName" width="180" /> -->
|
|
|
- <el-table-column label="下发数" prop="issuedQuantity" width="120" />
|
|
|
|
|
- <el-table-column label="反馈人数" prop="signedQuantity" width="120" />
|
|
|
|
|
- <el-table-column label="反馈比例" prop="signedRatio" width="120" />
|
|
|
|
|
|
|
+ <el-table-column label="下发数" prop="issuedQuantity" width="120">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ {{ scope.row.status === 1 ? '-' : scope.row.issuedQuantity }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="反馈人数" prop="signedQuantity" width="120">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ {{ scope.row.status === 1 ? '-' : scope.row.signedQuantity }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="反馈比例" prop="signedRatio" width="120">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ {{ scope.row.status === 1 ? '-' : scope.row.signedRatio }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="责任通知文档" prop="attachment" width="250">
|
|
<el-table-column label="责任通知文档" prop="attachment" width="250">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<!-- <div
|
|
<!-- <div
|