|
@@ -208,7 +208,13 @@ export default {
|
|
|
getFileFileName(outFilename,statusName,item){
|
|
|
let name = item.fileName
|
|
|
let num= name.lastIndexOf(".")
|
|
|
- const outFilenames = name.slice(0,num)+"."+item.outputType
|
|
|
+ let output = ""
|
|
|
+ if(item.outputType === "png" || item.outputType === "jpg"){
|
|
|
+ output = "zip"
|
|
|
+ }else {
|
|
|
+ output = item.outputType
|
|
|
+ }
|
|
|
+ const outFilenames = name.slice(0,num)+"."+output
|
|
|
if(outFilename){
|
|
|
if(statusName === "failed"){
|
|
|
return `<span style="color: #9599b1" title="${outFilename}" class="style-ellipsis">${outFilename}</span>`
|
|
@@ -376,10 +382,13 @@ export default {
|
|
|
}
|
|
|
.style-ellipsis{
|
|
|
width:100%;
|
|
|
- white-space:nowrap;
|
|
|
+ white-space: nowrap!important;
|
|
|
overflow:hidden;
|
|
|
text-overflow:ellipsis;
|
|
|
}
|
|
|
+ .cell{
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
}
|
|
|
.table-empty {
|
|
|
margin-top: 50px;
|