UNPKG

quick-admin-vue3-core

Version:

以快(计算机执行效率、开发效率)为核心的后台管理系统开发模板

20 lines (18 loc) 808 B
import { BaseBtnType, BtnsMap } from '../../BaseBtn/_types'; import { CommonObj, StrNum } from '../../../_types'; import { TableColAttrs } from '../../table/_types'; import { FormFieldAttrs } from '../../form/_types'; export declare function getExportRows(cols?: TableColAttrs[], rows?: CommonObj[]): string[][]; /** * 获取查询条件的文本值 */ export declare function getQueryFieldValue(field: FormFieldAttrs, val: StrNum | StrNum[], joinChar?: string): any; /** * 获取每一行的分组按钮 * @param row 行数据 * @param rowInd 行下标 * @param operateBtns 操作栏按钮 * @param baseBtnAttrs * @returns [] */ export declare function getStandardGroupBtns(row: CommonObj, rowInd: number, operateBtns?: BaseBtnType, baseBtnAttrs?: BtnsMap, isStand?: boolean): any;