Newer
Older
xc-business-system / src / commonInterface / resource-interface.ts
tanyue on 26 Aug 2023 617 bytes 20230826 训练登记表功能调试
// 字典值
export interface IDictType {
  name: string
  id: string
  value: string
}

// 表格列
export interface ITableColumn {
  text: string // 标题
  value: string // 值
  align?: 'left' | 'center' | 'right' // 排列
  width?: string | number // 宽度,px值
  show?: boolean // 是否显示列
  showOverflow?: boolean // 是否溢出为省略号
  filter?: Function // 字段过滤器
  styleFilter?: Function // 文字过滤器
  fixed?: boolean // 固定列
  filters?: { text: string; value: string }[] // 列筛选
  isFilters?: boolean // 是否有列筛选
  required?: boolean // 是否必填
}