|
|
|
@ -187,7 +187,7 @@ const { getFooterProps } = useTableFooter(
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
const { getFormProps, replaceFormSlotKey, getFormSlotKeys, handleSearchInfoChange, getShowForm, setShowForm } |
|
|
|
|
= useTableForm(getProps, slots, fetch, getLoading) |
|
|
|
|
= useTableForm(getProps, slots, async params => void fetch(params), getLoading) |
|
|
|
|
|
|
|
|
|
const getBindValues = computed(() => { |
|
|
|
|
const dataSource = unref(getDataSourceRef) |
|
|
|
@ -240,7 +240,7 @@ function setProps(props: Partial<BasicTableProps>) {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const tableAction: TableActionType = { |
|
|
|
|
reload, |
|
|
|
|
reload: async params => void reload(params), |
|
|
|
|
getSelectRows, |
|
|
|
|
setSelectedRows, |
|
|
|
|
clearSelectedRowKeys, |
|
|
|
|