|
|
|
@ -275,6 +275,24 @@ |
|
|
|
{{ getDictLabel(dict.sfssTags, row.tag) }} |
|
|
|
{{ getDictLabel(dict.sfssTags, row.tag) }} |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column label="办结情况" width="100" prop="completionStatus"> |
|
|
|
|
|
|
|
<template #default="{ row }"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
row.completionStatus === '1' ? '程序办结' : |
|
|
|
|
|
|
|
row.completionStatus === '2' ? '已解决合理诉求' : |
|
|
|
|
|
|
|
'/' |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column label="群众认可" width="100" prop="publicRecognition"> |
|
|
|
|
|
|
|
<template #default="{ row }"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
row.publicRecognition === '1' ? '认可' : |
|
|
|
|
|
|
|
row.publicRecognition === '2' ? '不认可' : |
|
|
|
|
|
|
|
'/' |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="办理方式" width="100"> |
|
|
|
<el-table-column label="办理方式" width="100"> |
|
|
|
<template #default="{ row }"> |
|
|
|
<template #default="{ row }"> |
|
|
|
{{ getDictLabel(dict.handleMethodType, row.handleMethod) }} |
|
|
|
{{ getDictLabel(dict.handleMethodType, row.handleMethod) }} |
|
|
|
@ -353,7 +371,7 @@ |
|
|
|
destroy-on-close |
|
|
|
destroy-on-close |
|
|
|
> |
|
|
|
> |
|
|
|
<div v-loading="submitLoading" element-loading-text="提交中..."> |
|
|
|
<div v-loading="submitLoading" element-loading-text="提交中..."> |
|
|
|
<negative-verify-sfss ref="negativeVerifySfssRef"/> |
|
|
|
<negative-verify-sfss ref="negativeVerifySfssRef" :extraDict="dict"/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<template #footer> |
|
|
|
<template #footer> |
|
|
|
<div class="dialog-footer"> |
|
|
|
<div class="dialog-footer"> |
|
|
|
|