!149 chore(docs): 忽略 localDocs 本地文档目录

* chore(docs): 忽略 localDocs 本地文档目录
* fix(inspectTask): 发起销号流程入口常显并移除状态调整菜单
* fix(xispeak): 督办状态结合反馈闭环实时推导
This commit is contained in:
wsm
2026-08-12 10:16:07 +00:00
parent 046f5dad12
commit 9dfba2bca8
3 changed files with 40 additions and 28 deletions
+21 -23
View File
@@ -388,9 +388,7 @@
if ((record.bpmStatus == '1' || !record.bpmStatus) && record.completedStage === 0) {
list.push({ text: '发起巡视整改流程', icon: 'ant-design:play-circle-outlined', event: 'process', onClick: handleProcess.bind(null, record) });
}
if (record.bpmStatus && record.bpmStatus !== '1' && record.completedStage === 2) {
list.push({ text: '发起销号流程', icon: 'ant-design:stop-outlined', event: 'deleteProcess', onClick: handleDeleteProcess.bind(null, record) });
}
list.push({ text: '发起销号流程', icon: 'ant-design:stop-outlined', event: 'deleteProcess', onClick: handleDeleteProcess.bind(null, record) });
list.push({
text: '查询督办流程',
icon: 'ant-design:search-outlined',
@@ -398,26 +396,26 @@
divider: true,
onClick: handleQueryProcess.bind(null, record),
});
if (!record.bpmStatus || record.bpmStatus == '1') {
list.push({
text: '调整为未发起巡视整改流程状态',
icon: 'ant-design:rollback-outlined',
event: 'adj0',
onClick: () => adjustCompletedStage(record, 0),
});
list.push({
text: '调整为未发起销号流程状态',
icon: 'ant-design:check-circle-outlined',
event: 'adj2',
onClick: () => adjustCompletedStage(record, 2),
});
list.push({
text: '调整为已完成销号流程状态',
icon: 'ant-design:check-circle-outlined',
event: 'adj4',
onClick: () => adjustCompletedStage(record, 4),
});
}
// if (!record.bpmStatus || record.bpmStatus == '1') {
// list.push({
// text: '调整为未发起巡视整改流程状态',
// icon: 'ant-design:rollback-outlined',
// event: 'adj0',
// onClick: () => adjustCompletedStage(record, 0),
// });
// list.push({
// text: '调整为未发起销号流程状态',
// icon: 'ant-design:check-circle-outlined',
// event: 'adj2',
// onClick: () => adjustCompletedStage(record, 2),
// });
// list.push({
// text: '调整为已完成销号流程状态',
// icon: 'ant-design:check-circle-outlined',
// event: 'adj4',
// onClick: () => adjustCompletedStage(record, 4),
// });
// }
return list;
}