From 0fa280c6d02dbf694e36b1f352aea51132ec6dde Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 04 七月 2025 18:16:09 +0800 Subject: [PATCH] 我的浏览记录增加视频播放记录,TODO样式优化、播放历史视频 --- api/common.js | 24 +++++++++++++++++++++++- 1 files changed, 23 insertions(+), 1 deletions(-) diff --git a/api/common.js b/api/common.js index d6d7573..0a56d73 100644 --- a/api/common.js +++ b/api/common.js @@ -26,7 +26,29 @@ } /** + * 鑾峰彇鑵捐浜慶os sts涓存椂璁块棶鍑瘉 + */ + export function getSTSToken() { + return http.request({ + url: `${api.common}/lmk/file/sts`, + method: Method.GET, + }); +} + +/** + * 鑾峰彇鏂囦欢璁块棶鍦板潃 + */ + export function getFilePreviewUrl(fileKey) { + return http.request({ + url: `${api.common}/lmk/file/preview`, + method: Method.POST, + data: {fileKey: fileKey} + }); +} + +/** * 鏂囦欢涓婁紶鍦板潃 * @type {string} */ -export const upload = api.common + "/common/upload/file"; +export const upload = api.common + "/lmk/file/upload"; +export const multiUpload = api.common + "/lmk/file/multi/upload"; -- Gitblit v1.8.0