企业信息上传、查询功能完善

This commit is contained in:
chenlinlin 2025-04-18 15:43:09 +08:00
parent ea0626648d
commit cdefb3a930
7 changed files with 15 additions and 15 deletions

View File

@ -15,6 +15,7 @@ export const enterprises = {
method: REQUEST_METHOD_TYPES.GET,
params: query
}),
ledgerStatistics(query) {//企业信息统计
return api({
url: url + '/ledgerStatistics',

View File

@ -442,14 +442,14 @@ const baseRoutes = [
},
]
},
{
path: 'smrq',
name: '_smrq',
component: () => import('@views/xzzfgl/smrq.vue'),
meta: {
title: '扫码入企',
},
},
// {
// path: 'smrq',
// name: '_smrq',
// component: () => import('@views/xzzfgl/smrq.vue'),
// meta: {
// title: '扫码入企',
// },
// },
{
path: 'jcbgl',
name: '_jcbgl',
@ -479,7 +479,7 @@ const baseRoutes = [
name: '_caseList',
component: () => import('@views/xzzfgl/caseList.vue'),
meta: {
title: '案卷清单',
title: '案卷资料清单',
},
},
],

View File

@ -49,7 +49,7 @@
<el-table-column label="承办人" prop="caseHandler" min-width="150"></el-table-column>
<el-table-column label="结案日期" prop="caseClosingDate" min-width="150"></el-table-column>
<template #tableControlColumn="{ data: r }">
<el-link type="primary" @click="handleDetail(r.data.row)" title="转交">导出</el-link>&nbsp;&nbsp;
<el-link type="primary" @click="handleDetail(r.data.row)" title="转交">导出案卷</el-link>&nbsp;&nbsp;
<!-- <el-link v-if="r.data.row.downUrl" type="primary" @click="downloadFile(r.data.row)" title="下载案卷">案卷制作</el-link>-->
</template>
<template #dialogContent="{ dialogConfig: dialog }">

View File

@ -178,7 +178,7 @@ public class CaseController {
}
/**
* 案卷文件下载
* 生成案卷文件下载
*
* @param caseId 请求
* @return 案件实体

View File

@ -13,7 +13,7 @@ import java.time.LocalDateTime;
import java.util.Objects;
/**
* 在线巡查企业信息实体类
* 企业信息实体类
*/
@Entity
@Table(name = "zf_ins_enterprise")

View File

@ -173,9 +173,8 @@ public class EnterpriseJoinScheduleService {
Page<Enterprise> pageResult;
do {
// 分页查询企业信息
// 查询企业信息
pageResult = pageEnterprise(page, limit);
List<Enterprise> enterprises = pageResult.getContent();
if (!enterprises.isEmpty()) {
// 更新企业自查自报信息

View File

@ -53,7 +53,7 @@ public class EnterpriseScheduleService {
private final String produceLicensePage;
private final String hazardPage;
private final String sourcesDangerPage;
private final DictInterfaceService dictService;
private final DictInterfaceService dictService;
private final DateTimeFormatter yyyy = DateTimeFormatter.ofPattern("yyyy");
public EnterpriseScheduleService(EnterpriseRepository enterpriseRepo,