diff --git a/apps/web-antd/src/views/erp/product/category/index.vue b/apps/web-antd/src/views/erp/product/category/index.vue index 6645a66e..01fdede9 100644 --- a/apps/web-antd/src/views/erp/product/category/index.vue +++ b/apps/web-antd/src/views/erp/product/category/index.vue @@ -68,15 +68,6 @@ async function handleDelete(row: ErpProductCategoryApi.ProductCategory) { } } -const checkedIds = ref([]); -function handleRowCheckboxChange({ - records, -}: { - records: ErpProductCategoryApi.ProductCategory[]; -}) { - checkedIds.value = records.map((item) => item.id as number); -} - const [Grid, gridApi] = useVbenVxeGrid({ gridOptions: { columns: useGridColumns(), @@ -107,10 +98,6 @@ const [Grid, gridApi] = useVbenVxeGrid({ accordion: false, }, } as VxeTableGridOptions, - gridEvents: { - checkboxAll: handleRowCheckboxChange, - checkboxChange: handleRowCheckboxChange, - }, });