czh-20260709-增加进行中逾期任务数量显示
This commit is contained in:
@@ -97,7 +97,7 @@
|
||||
</template>
|
||||
<template v-else>
|
||||
<a-tag class="feedback-expand-count" color="warning">未开始 {{ getFeedbackStatusCount(record).notStarted }}</a-tag>
|
||||
<a-tag class="feedback-expand-count" color="error">进行中 {{ getFeedbackStatusCount(record).inProgress }}</a-tag>
|
||||
<a-tag class="feedback-expand-count" color="error">进行中 {{ getFeedbackStatusCount(record).inProgress }}(已逾期 {{ getFeedbackStatusCount(record).overdue }})</a-tag>
|
||||
<a-tag class="feedback-expand-count" color="success">已完成 {{ getFeedbackStatusCount(record).completed }}</a-tag>
|
||||
<a-tag class="feedback-expand-count">(共 {{ getFeedbackStatusCount(record).total }} 条)</a-tag>
|
||||
</template>
|
||||
@@ -275,7 +275,7 @@
|
||||
}
|
||||
|
||||
function getFeedbackStatusCount(record: Recordable) {
|
||||
return countFeedbackStatus(getFeedbackTableData(record), 'bpmStatus');
|
||||
return countFeedbackStatus(getFeedbackTableData(record), 'bpmStatus', 'planTime');
|
||||
}
|
||||
|
||||
function clearFeedbackTableData() {
|
||||
|
||||
Reference in New Issue
Block a user