From f877ea29a3363133b7dc30d8adc477544a1eaf7f Mon Sep 17 00:00:00 2001 From: cqf <2252655793@qq.com> Date: 星期四, 26 五月 2022 14:21:58 +0800 Subject: [PATCH] 文件名称如果不以a62b结尾,补上a62b --- src/views/troubleshooting/index.vue | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/views/troubleshooting/index.vue b/src/views/troubleshooting/index.vue index a81e711..163e4cb 100644 --- a/src/views/troubleshooting/index.vue +++ b/src/views/troubleshooting/index.vue @@ -182,6 +182,7 @@ <el-upload class="upload-demo" ref="upload" + action="https://jsonplaceholder.typicode.com/posts/" :http-request="uploadSectionFile" :on-preview="handlePreview" :on-remove="handleRemove" @@ -359,7 +360,7 @@ if (data.ok) { var fileName = data.data.fileName[0]; if (!fileName.endsWith("a62b")) { - fileName = fileName + param.file.realFileName; + fileName = fileName + "a62b"; } this.fileList.push({name:fileName,url:fileName}) } -- Gitblit v1.9.2