增加前端格式检查配置

This commit is contained in:
yml2213
2026-06-08 06:40:33 +08:00
parent 79ea3a476c
commit 500f511185
150 changed files with 7254 additions and 4013 deletions
@@ -60,6 +60,6 @@ export function getSystemConfigSelectOptions(key: string) {
}
export function formatSystemConfigSelectValue(key: string, value: string) {
const option = getSystemConfigSelectOptions(key)?.find((item) => item.value === value)
const option = getSystemConfigSelectOptions(key)?.find(item => item.value === value)
return option?.label || null
}