Commit 7f94c660 by mushishixian

图片上传的bug

parent cd093441
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
, before: function () { , before: function () {
} }
, choose: function (obj) { , choose: function (obj) {
let files = obj.pushFile(); var files = this.files = obj.pushFile();
let recentFile = files[Object.keys(files)[Object.keys(files).length - 1]] let recentFile = files[Object.keys(files)[Object.keys(files).length - 1]]
fileName = recentFile.name; fileName = recentFile.name;
loadIndex = layer.load(1); loadIndex = layer.load(1);
...@@ -38,6 +38,8 @@ ...@@ -38,6 +38,8 @@
} else { } else {
layer.msg('上传接口异常,请重试或者联系管理员 . ' + res.message); layer.msg('上传接口异常,请重试或者联系管理员 . ' + res.message);
} }
// console.log(this.files[index]);
delete this.files[index];
layer.close(loadIndex); layer.close(loadIndex);
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment