fix : 직원검색 enter 검색 처리 완료

This commit is contained in:
Yesol Choi
2025-05-26 09:55:22 +09:00
parent 4b09f96007
commit 0321821a0f

View File

@@ -63,7 +63,7 @@ const tagsOptions = ref([])
const onKeyup = async (e: any) => {
const regex_jaeum = /[ㄱ-ㅎ]/g
if (e.key === 'Process') {
if (e.key === 'Enter') {
if (e.target.value.match(regex_jaeum) === null) {
try {
const res = await getUserList({params:{name : e.target.value}})