|
@@ -230,7 +230,11 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
download(row) {
|
|
|
- window.location.href = row.filePath;
|
|
|
+ let opath = row.filePath;
|
|
|
+ let indx = opath.lastIndexOf("/");
|
|
|
+ let head = opath.substring(0, indx + 1);
|
|
|
+ let tail = opath.substring(indx + 1);
|
|
|
+ window.location.href = head + encodeURIComponent(tail);
|
|
|
},
|
|
|
handlePagerNo(pageNo) {
|
|
|
this.doSearch(pageNo);
|