【优化】全局:动态表单的注释、error log 打印

This commit is contained in:
YunaiV
2024-05-06 22:51:26 +08:00
parent 41cbabcf88
commit 0222eef6b5
4 changed files with 5 additions and 3 deletions

View File

@ -69,7 +69,7 @@ export const useApiSelect = (option: ApiSelectProps) => {
}))
return
}
console.log(`接口[${props.url}] 返回结果不是一个数组`)
console.error(`接口[${props.url}] 返回结果不是一个数组`)
}
onMounted(async () => {

View File

@ -5,6 +5,7 @@ import { SelectRuleOption } from '@/components/FormCreate/src/type'
/**
* 通用选择器规则 hook
*
* @param option 规则配置
*/
export const useSelectRule = (option: SelectRuleOption) => {