update yudao-ui-admin/src/components/FileUpload/index.vue.
后台一直使用 0 作为成功,所以前端也不应该使用200 Signed-off-by: plimlips <156839224@qq.com>pull/2/head
parent
258c1ddb70
commit
2c02159384
|
@ -150,7 +150,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 上传成功回调
|
// 上传成功回调
|
||||||
handleUploadSuccess(res, file) {
|
handleUploadSuccess(res, file) {
|
||||||
if (res.code === 200) {
|
if (res.code === 0) {
|
||||||
// edit by 芋道源码
|
// edit by 芋道源码
|
||||||
this.uploadList.push({ name: res.data, url: res.data });
|
this.uploadList.push({ name: res.data, url: res.data });
|
||||||
this.uploadedSuccessfully();
|
this.uploadedSuccessfully();
|
||||||
|
|
Loading…
Reference in New Issue