|
|
|
@ -116,13 +116,14 @@ |
|
|
|
<el-table-column prop="timeLimit" align="center" width="110" label="办结时限" :show-overflow-tooltip="true"> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column prop="statusName" align="center" width="110" label="办理状态" |
|
|
|
<el-table-column prop="status" align="center" width="110" label="办理状态" |
|
|
|
:show-overflow-tooltip="true"> |
|
|
|
<!-- <template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.handlestatus === 0">联系当事人超期</span> |
|
|
|
<span v-else-if="scope.row.handlestatus ===1">部门办结超期</span> |
|
|
|
<span v-else>--</span> |
|
|
|
</template> --> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.status === 'unassigned'">未指派</span> |
|
|
|
<span v-else-if="scope.row.status ==='assigned'">已指派</span> |
|
|
|
<span v-else-if="scope.row.status ==='closed_case'">已办结</span> |
|
|
|
<span v-else="scope.row.status ==='processing'">处理中</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="limitStatus" align="center" width="110" label="办理超期" |
|
|
|
:show-overflow-tooltip="true"> |
|
|
|
|