update multiple upload demo

pull/258/head
afc163 10 years ago
parent f229f86a75
commit 346337936a

@ -17,6 +17,11 @@ var props = {
if (info.file.status !== 'uploading') {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
message.success(info.file.name + ' 上传成功。');
} else if (info.file.error) {
message.error(info.file.name + ' 上传失败。');
}
}
};

Loading…
Cancel
Save