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

View File

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