no message

This commit is contained in:
kuaifan 2022-05-29 10:19:16 +08:00
parent 75bc7f2a77
commit 939da1278f
2 changed files with 14 additions and 8 deletions

View File

@ -73,7 +73,7 @@ export default {
if (projectKeyValue) {
return data.filter(item => $A.strExists(`${item.name}||${item.desc}`, projectKeyValue));
}
return data.map(item => {
/*return data.map(item => {
if (!$A.isArray(item.user_simple)) {
const arr = (item.user_simple || "").split("|");
if (arr.length > 1) {
@ -85,7 +85,8 @@ export default {
}
}
return item;
});
});*/
return data;
},
},

View File

@ -136,12 +136,17 @@
display: flex;
align-items: center;
margin-left: 28px;
.is-success {
opacity: 0.5;
.el-icon-check {
font-size: 28px;
font-weight: 900;
color: $primary-color;
.el-progress {
&.is-success {
opacity: 0.5;
.el-icon-check {
font-size: 28px;
font-weight: 900;
color: $primary-color;
}
}
.el-progress__text {
font-size: 12px !important;
}
}
}