去掉没用的打印

This commit is contained in:
yangjun 2025-11-12 08:34:18 +08:00
parent e7747b960f
commit 5d0851eaa7
1 changed files with 0 additions and 4 deletions

View File

@ -40,7 +40,6 @@
// const emit = defineEmits(['headerSearch']);
const isShowDb = computed(() => {
var search = props.column?.search?true:false;
console.log("🚀 ~ props.column:", props.column)
return search;
});
const searchInputRef = ref<HTMLInputElement | null>(null);
@ -62,14 +61,11 @@
async function handleBlur(event){
const value = event.target.value; //
console.log("event.target", event.target);
console.log("handleBlur", value);
searchParam.value = "";
paramValue.value = "";
emit('headerSearch', {key:paramKey.value,value:value});
}
async function handleClick() {
console.log("🚀 ~ item:", props.column)
searchParam.value = (props.column?.key as string) || '';
paramValue.value = "";
await nextTick();