Browse Source

fix issue

tags/v1.22.9.2^2
zhoupzh 3 years ago
parent
commit
c76541041b
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      web_src/js/components/Model.vue

+ 8
- 1
web_src/js/components/Model.vue View File

@@ -503,7 +503,7 @@ export default {
break;
case 2:
this.tableData[i].Status = "FAILED";
this.tableData[i].Status_title = this.tableData[i].StatusDesc;
this.tableData[i].Status_title = this.tableData[i].Status;
break;
default:
this.tableData[i].Status = "SUCCEEDED";
@@ -614,6 +614,7 @@ export default {
vertical-align: middle;
white-space: nowrap;
}

.el-icon-arrow-right {
font-family: element-icons !important;
speak: none;
@@ -632,9 +633,11 @@ export default {
color: #d4d4d5;
margin-right: 4px;
}

.el-icon-arrow-right::before {
content: "\e6e0";
}

.expand-icon {
display: inline-block;
width: 20px;
@@ -644,10 +647,12 @@ export default {
margin-right: 3px;
font-size: 12px;
}

/deep/ .el-table_1_column_1.is-left .cell {
padding-right: 0px !important;
white-space: nowrap;
}

/deep/ .el-table__expand-icon .el-icon-arrow-right {
font-family: element-icons !important;
speak: none;
@@ -666,10 +671,12 @@ export default {
color: #3291f8;
margin-right: 4px;
}

.space-around {
display: flex;
justify-content: space-around;
}

.disabled {
cursor: default;
pointer-events: none;


Loading…
Cancel
Save