新需求首页功能开发,bug修改
This commit is contained in:
parent
cb5bf09fd4
commit
ab5fe7cff5
|
|
@ -27,7 +27,14 @@
|
|||
</el-dropdown>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menu-conten" v-if="topMenuList[projectName].length">
|
||||
<div class="menu-conten-item" v-for="(item, index) in topMenuList[projectName]" :key="index" :title="item.name"
|
||||
@click="handleTo(item)" :class="{ isActive: item.path == topActive }">
|
||||
<span>
|
||||
{{ item.name }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-profile">
|
||||
<span class="zyt" @click="skipPage"><i>综合执法一张图</i></span>
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@ public class BigScreenController {
|
|||
public BigScreenController(BigScreenService bigScreenService) {
|
||||
this.bigScreenService = bigScreenService;
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据概览统计
|
||||
*
|
||||
|
|
|
|||
|
|
@ -460,6 +460,7 @@ public class Case extends BaseModel {
|
|||
@Column(length = 100)
|
||||
@Comment("案件来源")
|
||||
private String caseSource;
|
||||
|
||||
/**
|
||||
* 归档号
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -526,7 +526,7 @@ public class EnforcementInfoHistory extends BaseModel {
|
|||
private String caseCause;
|
||||
|
||||
/**
|
||||
* 案件来源co
|
||||
* 案件来源code
|
||||
*/
|
||||
@Column(length = 2)
|
||||
@Comment("案件来源code")
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ import java.time.LocalDateTime;
|
|||
public class CaseInfoDto {
|
||||
private String caseNum; //案件号
|
||||
private String enforcementId; //执法信息id
|
||||
private String agencyId; //机构id
|
||||
private String filedUserId;//立案人id
|
||||
private String filedUserName;//立案人
|
||||
private LocalDateTime fillingTime;//立案时间
|
||||
|
|
|
|||
Loading…
Reference in New Issue