企业信息上传、查询功能完善
This commit is contained in:
parent
ea0626648d
commit
cdefb3a930
|
|
@ -15,6 +15,7 @@ export const enterprises = {
|
||||||
method: REQUEST_METHOD_TYPES.GET,
|
method: REQUEST_METHOD_TYPES.GET,
|
||||||
params: query
|
params: query
|
||||||
}),
|
}),
|
||||||
|
|
||||||
ledgerStatistics(query) {//企业信息统计
|
ledgerStatistics(query) {//企业信息统计
|
||||||
return api({
|
return api({
|
||||||
url: url + '/ledgerStatistics',
|
url: url + '/ledgerStatistics',
|
||||||
|
|
|
||||||
|
|
@ -442,14 +442,14 @@ const baseRoutes = [
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
path: 'smrq',
|
// path: 'smrq',
|
||||||
name: '_smrq',
|
// name: '_smrq',
|
||||||
component: () => import('@views/xzzfgl/smrq.vue'),
|
// component: () => import('@views/xzzfgl/smrq.vue'),
|
||||||
meta: {
|
// meta: {
|
||||||
title: '扫码入企',
|
// title: '扫码入企',
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
path: 'jcbgl',
|
path: 'jcbgl',
|
||||||
name: '_jcbgl',
|
name: '_jcbgl',
|
||||||
|
|
@ -479,7 +479,7 @@ const baseRoutes = [
|
||||||
name: '_caseList',
|
name: '_caseList',
|
||||||
component: () => import('@views/xzzfgl/caseList.vue'),
|
component: () => import('@views/xzzfgl/caseList.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '案卷清单',
|
title: '案卷资料清单',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
<el-table-column label="承办人" prop="caseHandler" min-width="150"></el-table-column>
|
<el-table-column label="承办人" prop="caseHandler" min-width="150"></el-table-column>
|
||||||
<el-table-column label="结案日期" prop="caseClosingDate" min-width="150"></el-table-column>
|
<el-table-column label="结案日期" prop="caseClosingDate" min-width="150"></el-table-column>
|
||||||
<template #tableControlColumn="{ data: r }">
|
<template #tableControlColumn="{ data: r }">
|
||||||
<el-link type="primary" @click="handleDetail(r.data.row)" title="转交">导出</el-link>
|
<el-link type="primary" @click="handleDetail(r.data.row)" title="转交">导出案卷</el-link>
|
||||||
<!-- <el-link v-if="r.data.row.downUrl" type="primary" @click="downloadFile(r.data.row)" title="下载案卷">案卷制作</el-link>-->
|
<!-- <el-link v-if="r.data.row.downUrl" type="primary" @click="downloadFile(r.data.row)" title="下载案卷">案卷制作</el-link>-->
|
||||||
</template>
|
</template>
|
||||||
<template #dialogContent="{ dialogConfig: dialog }">
|
<template #dialogContent="{ dialogConfig: dialog }">
|
||||||
|
|
|
||||||
|
|
@ -178,7 +178,7 @@ public class CaseController {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 案卷文件下载
|
* 生成案卷文件并下载
|
||||||
*
|
*
|
||||||
* @param caseId 请求
|
* @param caseId 请求
|
||||||
* @return 案件实体
|
* @return 案件实体
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ import java.time.LocalDateTime;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 在线巡查企业信息实体类
|
* 企业信息实体类
|
||||||
*/
|
*/
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "zf_ins_enterprise")
|
@Table(name = "zf_ins_enterprise")
|
||||||
|
|
|
||||||
|
|
@ -173,9 +173,8 @@ public class EnterpriseJoinScheduleService {
|
||||||
Page<Enterprise> pageResult;
|
Page<Enterprise> pageResult;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
// 分页查询企业信息
|
// 查询企业信息
|
||||||
pageResult = pageEnterprise(page, limit);
|
pageResult = pageEnterprise(page, limit);
|
||||||
List<Enterprise> enterprises = pageResult.getContent();
|
|
||||||
|
|
||||||
if (!enterprises.isEmpty()) {
|
if (!enterprises.isEmpty()) {
|
||||||
// 更新企业自查自报信息
|
// 更新企业自查自报信息
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public class EnterpriseScheduleService {
|
||||||
private final String produceLicensePage;
|
private final String produceLicensePage;
|
||||||
private final String hazardPage;
|
private final String hazardPage;
|
||||||
private final String sourcesDangerPage;
|
private final String sourcesDangerPage;
|
||||||
private final DictInterfaceService dictService;
|
private final DictInterfaceService dictService;、
|
||||||
private final DateTimeFormatter yyyy = DateTimeFormatter.ofPattern("yyyy");
|
private final DateTimeFormatter yyyy = DateTimeFormatter.ofPattern("yyyy");
|
||||||
|
|
||||||
public EnterpriseScheduleService(EnterpriseRepository enterpriseRepo,
|
public EnterpriseScheduleService(EnterpriseRepository enterpriseRepo,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue