feat(xispeak): 新增流程阶段筛选 + 监察按钮条件优化 + 流程阶段表单字段

- 列表页新增"流程阶段"下拉筛选(绑定 queryParam.completedStage)
- 编辑表单新增 completedStage 手动选择字段
- BPM 表单监察按钮仅 showJiJianFields && nonJiJianFieldsReadonly 时渲染为"监察"

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wsm
2026-07-02 17:34:46 +08:00
co-authored by Claude Opus 4.7
parent ae8696921b
commit 6c85017845
3 changed files with 24 additions and 1 deletions
@@ -213,7 +213,7 @@
<span v-else>-</span>
</template>
<template v-if="column.key === 'feedbackAction'">
<a-button type="link" size="small" @click="handleEditFeedback(record)">{{ showJiJianFields && nonJiJianFieldsReadonly ? '' : '编辑' }}</a-button>
<a-button type="link" size="small" @click="handleEditFeedback(record)">{{ showJiJianFields && nonJiJianFieldsReadonly ? '' : '编辑' }}</a-button>
<a-popconfirm title="确定删除该反馈吗?" @confirm="handleDeleteFeedback(record)">
<a-button type="link" size="small" danger>删除</a-button>
</a-popconfirm>