新需求首页功能开发,bug修改

This commit is contained in:
heli02 2025-05-30 19:07:10 +08:00
parent cb5bf09fd4
commit ab5fe7cff5
5 changed files with 11 additions and 3 deletions

View File

@ -27,7 +27,14 @@
</el-dropdown> </el-dropdown>
</div> </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"> <div class="right-profile">
<span class="zyt" @click="skipPage"><i>综合执法一张图</i></span> <span class="zyt" @click="skipPage"><i>综合执法一张图</i></span>

View File

@ -28,7 +28,6 @@ public class BigScreenController {
public BigScreenController(BigScreenService bigScreenService) { public BigScreenController(BigScreenService bigScreenService) {
this.bigScreenService = bigScreenService; this.bigScreenService = bigScreenService;
} }
/** /**
* 数据概览统计 * 数据概览统计
* *

View File

@ -460,6 +460,7 @@ public class Case extends BaseModel {
@Column(length = 100) @Column(length = 100)
@Comment("案件来源") @Comment("案件来源")
private String caseSource; private String caseSource;
/** /**
* 归档号 * 归档号
*/ */

View File

@ -526,7 +526,7 @@ public class EnforcementInfoHistory extends BaseModel {
private String caseCause; private String caseCause;
/** /**
* 案件来源co * 案件来源code
*/ */
@Column(length = 2) @Column(length = 2)
@Comment("案件来源code") @Comment("案件来源code")

View File

@ -8,6 +8,7 @@ import java.time.LocalDateTime;
public class CaseInfoDto { public class CaseInfoDto {
private String caseNum; //案件号 private String caseNum; //案件号
private String enforcementId; //执法信息id private String enforcementId; //执法信息id
private String agencyId; //机构id
private String filedUserId;//立案人id private String filedUserId;//立案人id
private String filedUserName;//立案人 private String filedUserName;//立案人
private LocalDateTime fillingTime;//立案时间 private LocalDateTime fillingTime;//立案时间