fix : 移除输出log

This commit is contained in:
2024-06-21 13:02:55 +08:00
parent ddc305297f
commit 9b758d41d0
30 changed files with 45 additions and 70 deletions

View File

@@ -103,7 +103,6 @@ const content = computed(() => {
//校验数据配置的合法性
const validate = (err) => {
try {
console.log(props.config.props.assignedType)
switch (props.config.props.assignedType) {
case "ASSIGN_USER":
showError.value = !validate_ASSIGN_USER(err);
@@ -113,7 +112,6 @@ const validate = (err) => {
break;
case "SELF_SELECT":
showError.value = !validate_SELF_SELECT(err);
console.log(showError.value);
break;
case "LEADER_TOP":
showError.value = !validate_LEADER_TOP(err);
@@ -139,7 +137,6 @@ const validate = (err) => {
}
return showError
} catch (e) {
console.log(e)
return false;
}
}

View File

@@ -44,7 +44,6 @@ const headerBgc = computed(() => {
const validate = () => {
console.log("调用成功")
return []
}