Type alias ComputeContext

ComputeContext: {
    attrs?: any;
    form?: any;
    getComponentRef?: ((key?: string) => any | Promise<any>);
    index?: number;
    mode?: string;
    row?: any;
    [key: string]: any;
}

compute参数方法的参数

Type declaration

  • [key: string]: any
  • Optional attrs?: any

    其他参数

  • Optional form?: any

    表单数据

  • Optional getComponentRef?: ((key?: string) => any | Promise<any>)
      • (key?: string): any | Promise<any>
      • 获取对应字段组件的ref

        Parameters

        • Optional key: string

        Returns any | Promise<any>

  • Optional index?: number

    当前行号

  • Optional mode?: string

    当前编辑对话框模式[view/add/edit]

  • Optional row?: any

    行数据

Generated using TypeDoc