Files
lingji-work-fe/src/views/components/table/index.md
2025-06-16 14:42:26 +08:00

718 B
Raw Blame History

Table 说明

说明

<a-table v-bind="propsRes" v-on="propsEvent" ></a-table>

复写a-table中原始的v-bind及v-on属性propRes负责处理属性propsEvent负责处理a-table的事件

setProps设置a-table的属性类型为IDefaultProps

setColumns设置table中columns的属性类型为TableColumnData[]

setLoadListParams: 设置列表数据接口的请求参数,类型为自定义

loadTableData获取列表数据返回列表参数

使用方式

<a-table v-bind="propsRes" v-on="propsEvent">
<template #xx></template> // 自定义插槽名称在setColumns的传入值中设置
</a-table>

示例

具体参照table文件夹的示例