一张图对讲机功能调试
This commit is contained in:
parent
621b070d6c
commit
8d5469f011
|
|
@ -181,7 +181,11 @@ onMounted(() => {
|
|||
if(dqz){
|
||||
todoSteps.value[5].count = dqz.stat_num
|
||||
}
|
||||
|
||||
//调查取证完毕待分析研判
|
||||
const dfxyp = target.find(node => node.status === 'investigation_done')
|
||||
if(dfxyp){
|
||||
todoSteps.value[6].count = dfxyp.stat_num
|
||||
}
|
||||
//分析研判通过待法制审核
|
||||
const dfzsh = target.find(node => node.status === 'analyze_judge')
|
||||
if(dfzsh){
|
||||
|
|
|
|||
|
|
@ -102,7 +102,8 @@
|
|||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
>
|
||||
|
||||
</el-timeline-item>
|
||||
<el-timeline-item v-if="caseInfo.enforcementInfo.currentNodeCode==='investigating'
|
||||
||caseInfo.enforcementInfo.currentNodeCode==='investigation_done'||caseInfo.enforcementInfo.currentNodeCode==='analyze_judge'
|
||||
||caseInfo.enforcementInfo.currentNodeCode==='inform'||caseInfo.enforcementInfo.currentNodeCode==='hearing'
|
||||
|
|
|
|||
|
|
@ -137,6 +137,7 @@ function handleDetail(row) {
|
|||
documentCode: '(西安)应急立〔' + year + '〕' + area + xh + '号',
|
||||
documenContent: {}
|
||||
},
|
||||
{
|
||||
|
||||
{
|
||||
documentNo: 3,
|
||||
|
|
|
|||
|
|
@ -497,7 +497,16 @@ public class CaseService {
|
|||
oldCase.setEvidence(c.getEvidence());
|
||||
result.add(oldCase);
|
||||
//修改执法流程节点
|
||||
|
||||
enforcementInfoRepository.findById(c.getEnforcementId()).ifPresent(enforcementInfo -> {
|
||||
if (c.getStatus().equals(Case.CaseStatus.investigating)) {
|
||||
enforcementInfo.setCurrentNodeCode(FlowNode.investigating);
|
||||
enforcementInfo.setCurrentNode("调查取证中");
|
||||
result.add(enforcementInfo);
|
||||
} else if (c.getStatus().equals(Case.CaseStatus.investigation_done)) {
|
||||
enforcementInfo.setCurrentNodeCode(FlowNode.investigation_done);
|
||||
enforcementInfo.setCurrentNode("调查取证完成");
|
||||
result.add(enforcementInfo);
|
||||
}
|
||||
});
|
||||
oldCase.setStatus(Case.CaseStatus.investigation_done);
|
||||
caseRepository.save(oldCase);
|
||||
|
|
|
|||
Loading…
Reference in New Issue