|
|
@@ -69,13 +69,15 @@
|
|
|
@update:pageNumber="handleCurrentChange"
|
|
|
>
|
|
|
<template #status="scope">
|
|
|
- <span>{{ scope.row.statusName || '0' }}</span>
|
|
|
+ <span>{{ scope.row.statusName || '-' }}</span>
|
|
|
</template>
|
|
|
<template #issueCount="scope">
|
|
|
- <span>{{ scope.row.issueCount || '0' }}</span>
|
|
|
+ <span v-if="scope.row.statusId == 2">-</span>
|
|
|
+ <span v-else> {{ scope.row.issueCount || '0' }}</span>
|
|
|
</template>
|
|
|
<template #feedbackCount="scope">
|
|
|
- <span>{{ scope.row.feedbackCount || '0' }}</span>
|
|
|
+ <span v-if="scope.row.statusId == 2">-</span>
|
|
|
+ <span v-else> {{ scope.row.feedbackCount || '0' }}</span>
|
|
|
</template>
|
|
|
<template #feedbackRatio="scope">
|
|
|
<span>{{ scope.row.feedbackRatio ?? (scope.row.issueCount ? `${scope.row.feedbackCount ?? 0}/${scope.row.issueCount}` : '-') }}</span>
|
|
|
@@ -394,6 +396,9 @@
|
|
|
name: 'oneByOneManagementItem',
|
|
|
query: {
|
|
|
id: String(row.id),
|
|
|
+ problem: row.problem,
|
|
|
+ creatorName: row.creatorName,
|
|
|
+ createdAt: row.createdAt,
|
|
|
operate: 'one-by-one-notify-target',
|
|
|
},
|
|
|
});
|