From 30136c32f3ea719b81078604bee7a9cc476d6c39 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Fri, 24 Nov 2023 18:06:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=81=E8=A3=85=E9=98=BF=E9=87=8C=E4=BA=91os?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../oss.js => components/upload/config.js} | 0 src/components/upload/index.vue | 150 ++++++++++++++++++ src/components/upload/upload.js | 37 +++++ src/pages/match/details/index.vue | 6 +- src/pages/match/list/index.vue | 6 +- 5 files changed, 195 insertions(+), 4 deletions(-) rename src/{const/oss.js => components/upload/config.js} (100%) create mode 100644 src/components/upload/index.vue create mode 100644 src/components/upload/upload.js diff --git a/src/const/oss.js b/src/components/upload/config.js similarity index 100% rename from src/const/oss.js rename to src/components/upload/config.js diff --git a/src/components/upload/index.vue b/src/components/upload/index.vue new file mode 100644 index 0000000..a33f14a --- /dev/null +++ b/src/components/upload/index.vue @@ -0,0 +1,150 @@ + + + + {{ uploading ? '正在上传' : '上传文件' }} + + + + + 支持扩展名:.rar .zip .doc .docx .pdf .jpg... + + + + + + + \ No newline at end of file diff --git a/src/components/upload/upload.js b/src/components/upload/upload.js new file mode 100644 index 0000000..6960f2a --- /dev/null +++ b/src/components/upload/upload.js @@ -0,0 +1,37 @@ +// 阿里云oss上传 + +import OSS from 'ali-oss' +import OssConfig from './config' +import Util from '@/libs/util' + +let client = null +// 初始化oss +const initOss = () => { + if (!client) client = new OSS(OssConfig.config) +} + +export default { + // 上传文件 + upload(file) { + initOss() + return new Promise(async (resolve, reject) => { + try { + // 上传到阿里云oss + const res = await client.multipartUpload(file.name, file); + resolve({ + format: Util.getFileExt(file.name), + name: file.name, + url: OssConfig.preUrl + res.name, + size: file.size, + }) + } catch (error) { + reject() + } + }) + }, + // 删除文件(传完整url,不是没有https的name,因为很多接口没有存name,只存url,所以统一使用url) + async del(url) { + initOss() + await client.delete(url.replace(OssConfig.preUrl, '')); + } +} diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index 41047fa..cb3cea9 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -694,7 +694,8 @@ import util from '@/libs/util' import Setting from "@/setting" import Const from '@/const/match' import OSS from 'ali-oss' -import OssConfig from '@/const/oss' +import OssConfig from '@/components/upload/config.js' +import Oss from '@/components/upload/upload.js' export default { name: 'matchdetail', data () { @@ -1505,7 +1506,8 @@ export default { util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`); }, // 删除文件表里的文件 - handleRemove () { + handleRemove (file) { + Oss.del(file.url) this.fileList = [] this.curFileId && this.$post(this.api.cCompetitionStageFileDel, [this.curFileId]).then(res => { this.curFileId = '' diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue index 7a21116..dcd03b9 100644 --- a/src/pages/match/list/index.vue +++ b/src/pages/match/list/index.vue @@ -339,7 +339,8 @@ import Setting from "@/setting" import util from "@/libs/util" import Bus from '@/libs/bus' import OSS from 'ali-oss' -import OssConfig from '@/const/oss' +import OssConfig from '@/components/upload/config.js' +import Oss from '@/components/upload/upload.js' export default { name: "match", data () { @@ -833,7 +834,8 @@ export default { util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`); }, // 删除文件表里的文件 - handleRemove () { + handleRemove (file) { + Oss.del(file.url) this.fileList = [] this.curFileId && this.$post(this.api.cCompetitionStageFileDel, [this.curFileId]).then(res => { this.curFileId = ''
支持扩展名:.rar .zip .doc .docx .pdf .jpg...