修改案件首页、文书增加上传功能

This commit is contained in:
heli02 2025-04-18 15:40:23 +08:00
parent f6014677f4
commit ea0626648d
5 changed files with 21 additions and 3 deletions

View File

@ -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: '案卷清单',
}, },
}, },
], ],

View File

@ -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>&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>--> <!-- <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 }">

View File

@ -186,6 +186,12 @@
<artifactId>sso-client</artifactId> <artifactId>sso-client</artifactId>
<version>1.0</version> <version>1.0</version>
</dependency> </dependency>
<!-- 海康威视-->
<dependency>
<groupId>com.hikvision.ga</groupId>
<artifactId>artemis-http-client</artifactId>
<version>1.1.3</version>
</dependency>
<!-- Apache PDFBox --> <!-- Apache PDFBox -->
<dependency> <dependency>
<groupId>org.apache.pdfbox</groupId> <groupId>org.apache.pdfbox</groupId>

View File

@ -48,6 +48,18 @@ public class AuditConfig {
} }
} }
/**
* 审计功能用的日期时间提供者
*
* @author hx
* @since 20210818
*/
static class AuditDateTimeProvider implements DateTimeProvider {
@Override
public Optional<TemporalAccessor> getNow() {
return Optional.of(LocalDateTime.parse(LocalDateTime.now().format(DateTimeFormatter.ofPattern("uuuu-MM-dd'T'HH:mm:ss"))));
}
}
/** /**
* 审计功能用的日期时间提供者(实例) * 审计功能用的日期时间提供者(实例)
* *

View File

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