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 @@ + + + + \ 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 = ''