From 43c4f22a45e1c36840f8fbed6b127ac195de2808 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Tue, 16 Apr 2024 15:34:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=86=E9=A2=91=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/videoCloud.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/utils/videoCloud.js b/src/utils/videoCloud.js index 5c425a8..cd1964e 100644 --- a/src/utils/videoCloud.js +++ b/src/utils/videoCloud.js @@ -207,7 +207,13 @@ export default { if (pos !== -1) { suffix = file.substring(pos) } - const filename = new Date().getTime() + suffix + let filename = new Date().getTime() + suffix + let month = new Date().getMonth() + 1 + if (month < 10) { + month = '0' + month + } + const path = new Date().getFullYear() + '' + month + new Date().getDate() + filename = 'def/' + path + '/' + filename const formData = new FormData() const data = res // 注意formData里append添加的键的大小写 @@ -219,14 +225,13 @@ export default { formData.append('file', fileObject) formData.append('success_action_status', 200) // 成功后返回的操作码 const url = data.host - const fileUrl = url + '/def/' + filename videoIng(true, 100) return new Promise((resolve, reject) => { axios.defaults.withCredentials = false axios.post(url, formData).then(() => { // that.progress = 0; videoIng(false, 0) - resolve({ url: data.cdn ? data.cdn + '/def/' + filename : fileUrl }) + resolve({ url: data.cdn ? data.cdn + '/' + filename : data.host + '/' + filename }) }).catch(res => { reject({ msg: res }) })