|
@@ -79,6 +79,7 @@
|
|
|
|
|
|
|
|
<template #action="scope">
|
|
<template #action="scope">
|
|
|
<div class="action-container--div" style="justify-content: left">
|
|
<div class="action-container--div" style="justify-content: left">
|
|
|
|
|
+
|
|
|
<!-- 1-未下发、2-待反馈、3-已完成 4- 已作废 -->
|
|
<!-- 1-未下发、2-待反馈、3-已完成 4- 已作废 -->
|
|
|
<!-- 未下发(1):编辑、删除、下发 -->
|
|
<!-- 未下发(1):编辑、删除、下发 -->
|
|
|
<template v-if="Number(scope.row.status) === 1">
|
|
<template v-if="Number(scope.row.status) === 1">
|
|
@@ -86,7 +87,7 @@
|
|
|
<ActionButton
|
|
<ActionButton
|
|
|
text="删除"
|
|
text="删除"
|
|
|
:popconfirm="{
|
|
:popconfirm="{
|
|
|
- title: '确定要删除?',
|
|
|
|
|
|
|
+ title: '确定要删除?',
|
|
|
}"
|
|
}"
|
|
|
@confirm="handleDelete(scope.row.id)"
|
|
@confirm="handleDelete(scope.row.id)"
|
|
|
/>
|
|
/>
|
|
@@ -120,6 +121,15 @@
|
|
|
</template>
|
|
</template>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template #feedbackCount="scope">
|
|
|
|
|
+ {{ (scope.row.feedbackCount === 0 && scope.row.status === 1) ? '-' : scope.row.feedbackCount }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #issuedCount="scope">
|
|
|
|
|
+ {{ (scope.row.issuedCount === 0 && scope.row.status === 1) ? '-' : scope.row.issuedCount }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #feedbackRatio="scope">
|
|
|
|
|
+ {{ (scope.row.feedbackRatio === 0 && scope.row.status === 1) ? '-' : scope.row.feedbackRatio }}
|
|
|
|
|
+ </template>
|
|
|
</BasicTable>
|
|
</BasicTable>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|