修改案件首页、文书增加上传功能
This commit is contained in:
parent
f6014677f4
commit
ea0626648d
|
|
@ -479,7 +479,7 @@ const baseRoutes = [
|
|||
name: '_caseList',
|
||||
component: () => import('@views/xzzfgl/caseList.vue'),
|
||||
meta: {
|
||||
title: '案卷资料清单',
|
||||
title: '案卷清单',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
<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>-->
|
||||
</template>
|
||||
<template #dialogContent="{ dialogConfig: dialog }">
|
||||
|
|
|
|||
|
|
@ -186,6 +186,12 @@
|
|||
<artifactId>sso-client</artifactId>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
<!-- 海康威视-->
|
||||
<dependency>
|
||||
<groupId>com.hikvision.ga</groupId>
|
||||
<artifactId>artemis-http-client</artifactId>
|
||||
<version>1.1.3</version>
|
||||
</dependency>
|
||||
<!-- Apache PDFBox -->
|
||||
<dependency>
|
||||
<groupId>org.apache.pdfbox</groupId>
|
||||
|
|
|
|||
|
|
@ -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"))));
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 审计功能用的日期时间提供者(实例)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ public class CaseController {
|
|||
}
|
||||
|
||||
/**
|
||||
* 生成案卷文件并下载
|
||||
* 案卷文件下载
|
||||
*
|
||||
* @param caseId 请求
|
||||
* @return 案件实体
|
||||
|
|
|
|||
Loading…
Reference in New Issue