|
|
|
@ -315,6 +315,17 @@ |
|
|
|
</span> |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column label="信件状态(局)" width="120" prop="processingStatus" > |
|
|
|
|
|
|
|
<template #default="{ row }"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
row.processingStatus === 'completion' ? '已办结' : |
|
|
|
|
|
|
|
row.processingStatus === 'processing' ? '办理中' : |
|
|
|
|
|
|
|
row.processingStatus === 'delayed' ? '已延期' : |
|
|
|
|
|
|
|
row.processingStatus === 'terminated' ? '已终止' : |
|
|
|
|
|
|
|
'/' |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" width="240" fixed="right"> |
|
|
|
<el-table-column label="操作" width="240" fixed="right"> |
|
|
|
<template #default="{ row }"> |
|
|
|
<template #default="{ row }"> |
|
|
|
<el-button type="primary" v-if="row.status === '0'" link @click="handleAction(row)">办理</el-button> |
|
|
|
<el-button type="primary" v-if="row.status === '0'" link @click="handleAction(row)">办理</el-button> |
|
|
|
|