修改系统案件信息模块bug
This commit is contained in:
parent
94cc2e964c
commit
f9f511ae63
|
|
@ -55,7 +55,6 @@
|
|||
</template>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
</browser>
|
||||
</template>
|
||||
|
||||
|
|
|
|||
|
|
@ -118,19 +118,7 @@ const stats = ref([
|
|||
{ image: getImageUrl('企业数量.png'), title: '企业数量', value: 0, arrow: '↓', change: 16 ,path:'/dtsjygl/qyxxcx'},
|
||||
]);
|
||||
|
||||
// 待办步骤
|
||||
const todoSteps = ref([
|
||||
{ image1: getImageUrl('定制方案1.png'),image2: getImageUrl('定制方案2.png'), name: '定制方案', count: 0 ,path:'/xzzfgl/zfjc/dzjcfa'},
|
||||
{ image1: getImageUrl('方案审批1.png'),image2: getImageUrl('方案审批2.png'), name: '方案审批', count: 0 ,path:'/xzzfgl/zfjc/fasp'},
|
||||
{ image1: getImageUrl('现场检查1.png'),image2: getImageUrl('现场检查2.png'), name: '现场检查', count: 0 ,path:'/xzzfgl/zfjc/zfjc'},
|
||||
{ image1: getImageUrl('总结1.png'),image2: getImageUrl('总结2.png'), name: '总结', count: 0 ,path:'/xzzfgl/zfjc/zj'},
|
||||
{ image1: getImageUrl('立案1.png'),image2: getImageUrl('立案2.png'), name: '立案', count: 0 ,path:'/xzzfgl/xzcf/zfla'},
|
||||
{ image1: getImageUrl('调查取证1.png'),image2: getImageUrl('调查取证2.png'), name: '调查取证', count: 0 ,path:'/xzzfgl/xzcf/dcqz'},
|
||||
{ image1: getImageUrl('分析研判1.png'),image2: getImageUrl('分析研判2.png'), name: '分析研判', count: 0 ,path:'/xzzfgl/xzcf/fxyp'},
|
||||
{ image1: getImageUrl('法制审核1.png'),image2: getImageUrl('法制审核2.png'), name: '法制审核', count: 0 ,path:'/xzzfgl/xzcf/fzsh'},
|
||||
{ image1: getImageUrl('集体讨论1.png'),image2: getImageUrl('集体讨论2.png'), name: '集体讨论', count: 0,path:'/xzzfgl/xzcf/jttl' },
|
||||
{ image1: getImageUrl('结案1.png'),image2: getImageUrl('结案2.png'), name: '结案', count: 0 ,path:'/xzzfgl/xzcf/zfja' },
|
||||
]);
|
||||
|
||||
|
||||
// 快捷功能
|
||||
const quickFuncs = ref([
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@
|
|||
</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'
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ import java.util.Set;
|
|||
@RestController
|
||||
@RequestMapping(Constants.API_PREFIX + Constants.ApiIndustryCategoryPrefixes.SYSTEM)
|
||||
public class DictController {
|
||||
|
||||
private static final String DICT_SINGLE_URI = DICT_URI + "/{dictId}";
|
||||
private static final String DICT_ITEM_URI = "/dictItems";
|
||||
private static final String DICT_ITEM_SINGLE_URI = DICT_ITEM_URI + "/{dictItemId}";
|
||||
|
|
|
|||
|
|
@ -240,6 +240,18 @@ public class DictService {
|
|||
dictItemRepo.delete(dictItem);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除字典项通过字典ID
|
||||
*
|
||||
* @param dictId 字典ID
|
||||
*/
|
||||
@Transactional
|
||||
public void removeDictItemsByDictId(String dictId) {
|
||||
DictItem dictItem = new DictItem();
|
||||
Dict dict = new Dict();
|
||||
dict.setDictId(dictId);
|
||||
dictItem.setDict(dict);
|
||||
dictItemRepo.delete(dictItem);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue