神仙都没用 bd6ae251e4 调整样式
2023-12-14 22:23:21 +08:00

63 lines
1.2 KiB
TypeScript

import { Search } from "@element-plus/icons-vue";
import { h } from "vue";
import { useCrud } from "../../../hooks";
import { renderNode } from "../../../utils/vnode";
export function renderHeader(item: ClTable.Column, { scope, slots }: any) {
const crud = useCrud();
const slot = slots[`header-${item.prop}`];
if (slot) {
return slot({
scope
});
}
if (!item.search || !item.search.component) {
return scope.column.label;
}
// 显示输入框
function show(e: MouseEvent) {
item.search.isInput = true;
e.stopPropagation();
}
// 文字
const text = (
<div onClick={show}>
<el-icon class="icon">
<Search />
</el-icon>
<span>{scope.column.label}</span>
</div>
);
// 输入框
const input = h(renderNode(item.search.component, { prop: item.prop }), {
clearable: true,
modelValue: item.search.value,
onVnodeMounted(vn) {
// 默认聚焦
vn.component?.exposed?.focus?.();
},
onInput(val: any) {
item.search.value = val;
},
onChange(val: any) {
crud.value?.refresh({
page: 1,
[item.prop]: val === "" ? undefined : val
});
}
});
return (
<div class={["cl-table-header__search", { "is-input": item.search.isInput }]}>
{item.search.isInput ? input : text}
</div>
);
}