mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-13 14:12:50 +00:00
63 lines
1.2 KiB
TypeScript
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>
|
|
);
|
|
}
|