概述
250px|700px|reset
属性的配置
暴露的状态
暴露的方法
方法名称 | 描述 |
setHidden(v: boolean) | 设置 hidden 属性 |
setValue(v: ISortValue) | 设置值 |
排序数据格式
interface ISortField { // 排序字段的配置
field: string; // 字段
type: string; // 字段类型,支持文本、数字、布尔、日期、日期时间、选项、人员类型
title: string; // 标题
hidden: string; // 是否隐藏
}
interface ISortValue {。 // 筛选值
field: string; // 排序字段
direction: 'asc'| 'desc'; // 排序顺序
}