From e955dbbfb837ad409e41a663e1e894d8fb583f60 Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Fri, 13 Oct 2023 10:06:13 +0800
Subject: [PATCH] 修改视频关闭逻辑、优化弹窗消失的效果
---
src/utils/common.ts | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/src/utils/common.ts b/src/utils/common.ts
index 03c65f2..891e618 100644
--- a/src/utils/common.ts
+++ b/src/utils/common.ts
@@ -1,4 +1,8 @@
-
+/**
+ * 下载文件
+ * @param data
+ * @param fileName
+ */
export function downloadFile (data: Blob, fileName: string) {
const lable = document.createElement('a')
lable.href = window.URL.createObjectURL(data)
@@ -6,3 +10,7 @@
lable.click()
URL.revokeObjectURL(lable.href)
}
+
+export const requireImg = (imgPath: string) => {
+ return new URL(`../assets/${imgPath}`, import.meta.url).href
+}
--
Gitblit v1.9.3