From 2767ce7872b601720f013314c87bbaea27b248ad Mon Sep 17 00:00:00 2001
From: weipengfei <2187978347@qq.com>
Date: Sat, 9 Sep 2023 12:10:30 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=AF=81=E6=8D=AE=E5=8C=85?=
=?UTF-8?q?=E4=B8=8B=E8=BD=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/contract.ts | 5 +++++
src/views/contract/index.vue | 24 ++++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/src/api/contract.ts b/src/api/contract.ts
index 28a01de..2755c69 100644
--- a/src/api/contract.ts
+++ b/src/api/contract.ts
@@ -41,4 +41,9 @@ export function leaseUpContract(params: any) {
url: "/contract.VehicleContract/uploadContract",
params,
});
+}
+
+//请求证据包下载地址
+export function contractEvidence(params: any) {
+ return request.get({ url: "/contract.contract/evidence", params });
}
\ No newline at end of file
diff --git a/src/views/contract/index.vue b/src/views/contract/index.vue
index c63a9cf..cf050fb 100644
--- a/src/views/contract/index.vue
+++ b/src/views/contract/index.vue
@@ -168,6 +168,14 @@
>发送短信
+
+ 下载证据包
+
@@ -212,6 +220,7 @@ import {
apiContractLists,
apiContractDelete,
apiContractDetail,
+ contractEvidence,
} from "@/api/contract";
import { timeFormat } from "@/utils/util";
import feedback from "@/utils/feedback";
@@ -308,6 +317,21 @@ const handleDelete = async (id: number | any[]) => {
getLists();
};
+// 下载证据包
+const loadContractZip = (row: any) => {
+ contractEvidence({ id: row.id }).then((res) => {
+ downloadFile(res.url, "");
+ });
+};
+const downloadFile = (url: string, fileName: string) => {
+ let link = document.createElement("a");
+ link.href = url;
+ link.download = fileName;
+ document.body.appendChild(link);
+ link.click();
+ document.body.removeChild(link);
+};
+
getLists();