一张图对讲机功能调试
This commit is contained in:
parent
621b070d6c
commit
8d5469f011
|
|
@ -181,7 +181,11 @@ onMounted(() => {
|
||||||
if(dqz){
|
if(dqz){
|
||||||
todoSteps.value[5].count = dqz.stat_num
|
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')
|
const dfzsh = target.find(node => node.status === 'analyze_judge')
|
||||||
if(dfzsh){
|
if(dfzsh){
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,8 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-card>
|
</el-card>
|
||||||
>
|
|
||||||
|
</el-timeline-item>
|
||||||
<el-timeline-item v-if="caseInfo.enforcementInfo.currentNodeCode==='investigating'
|
<el-timeline-item v-if="caseInfo.enforcementInfo.currentNodeCode==='investigating'
|
||||||
||caseInfo.enforcementInfo.currentNodeCode==='investigation_done'||caseInfo.enforcementInfo.currentNodeCode==='analyze_judge'
|
||caseInfo.enforcementInfo.currentNodeCode==='investigation_done'||caseInfo.enforcementInfo.currentNodeCode==='analyze_judge'
|
||||||
||caseInfo.enforcementInfo.currentNodeCode==='inform'||caseInfo.enforcementInfo.currentNodeCode==='hearing'
|
||caseInfo.enforcementInfo.currentNodeCode==='inform'||caseInfo.enforcementInfo.currentNodeCode==='hearing'
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,7 @@ function handleDetail(row) {
|
||||||
documentCode: '(西安)应急立〔' + year + '〕' + area + xh + '号',
|
documentCode: '(西安)应急立〔' + year + '〕' + area + xh + '号',
|
||||||
documenContent: {}
|
documenContent: {}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
|
||||||
{
|
{
|
||||||
documentNo: 3,
|
documentNo: 3,
|
||||||
|
|
|
||||||
|
|
@ -497,7 +497,16 @@ public class CaseService {
|
||||||
oldCase.setEvidence(c.getEvidence());
|
oldCase.setEvidence(c.getEvidence());
|
||||||
result.add(oldCase);
|
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);
|
oldCase.setStatus(Case.CaseStatus.investigation_done);
|
||||||
caseRepository.save(oldCase);
|
caseRepository.save(oldCase);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue