update yudao-ui-admin/src/components/FileUpload/index.vue.

后台一直使用 0 作为成功,所以前端也不应该使用200

Signed-off-by: plimlips <156839224@qq.com>
This commit is contained in:
plimlips
2022-12-28 15:49:03 +00:00
committed by Gitee
parent 258c1ddb70
commit 2c02159384

View File

@ -150,7 +150,7 @@ export default {
},
// 上传成功回调
handleUploadSuccess(res, file) {
if (res.code === 200) {
if (res.code === 0) {
// edit by 芋道源码
this.uploadList.push({ name: res.data, url: res.data });
this.uploadedSuccessfully();