|
@@ -16088,7 +16088,9 @@ export default {
|
|
|
let elink = document.createElement("a");
|
|
|
elink.download = f.name;
|
|
|
elink.style.display = "none";
|
|
|
- let blob = new Blob([ab], { type: res.data.response.headers['content-type']+';charset=UTF-8'});
|
|
|
+ let blob = new Blob([ab], {
|
|
|
+ type: res.data.response.headers["content-type"] + ";charset=UTF-8",
|
|
|
+ });
|
|
|
elink.href = URL.createObjectURL(blob);
|
|
|
document.body.appendChild(elink);
|
|
|
elink.click();
|
|
@@ -16750,7 +16752,9 @@ export default {
|
|
|
flex-direction: column !important;
|
|
|
align-items: center !important;
|
|
|
}
|
|
|
-
|
|
|
+ .elist_input {
|
|
|
+ width: 90% !important;
|
|
|
+ }
|
|
|
.dialog_diy1 >>> .el-dialog {
|
|
|
width: 100% !important;
|
|
|
}
|