|
@@ -81,11 +81,31 @@
|
|
|
<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="departmentName" width="180" />
|
|
<el-table-column label="类别名称" prop="departmentName" 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="userGroupName" width="150" />
|
|
|
|
|
- <el-table-column label="计划完成时间" prop="planEndTime" width="150" />
|
|
|
|
|
|
|
+ <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="userGroupName" width="150">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ {{ scope.row.status == 1 ? '-' : scope.row.userGroupName }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="计划完成时间" prop="planEndTime" width="150">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ {{ scope.row.status == 1 ? '-' : scope.row.planEndTime }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column fixed="right" min-width="300" label="操作">
|
|
<el-table-column fixed="right" min-width="300" label="操作">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-button
|
|
<el-button
|