refactor: UI

This commit is contained in:
wangjiahao 2023-12-03 23:35:51 +08:00
parent d0d957b695
commit 999209757b
2 changed files with 0 additions and 4 deletions

View File

@ -42,9 +42,6 @@ const searchResult = computed(
)
const showFlagCheck = template => {
if (!template.categoryNames) {
console.log('===templateTest' + JSON.stringify(template))
}
return template.showFlag && template.categoryNames?.includes(props.label)
}

View File

@ -273,7 +273,6 @@ const categoriesComputed = computed(() => {
category => category.source === 'public' || category.source === state.templateSourceType
)
}
console.log('categoriesComputed=' + JSON.stringify(result))
return result
})