import { Vue } from "vue-property-decorator"; import { ITableDialog } from "../components/VTableDialog/type"; export default class TableDialog extends Vue { protected tableDialogConfig: ITableDialog; /******************************* 弹框操作 start ********************************/ openTableDialog(type?: string, row?: any, cb?: Function): void; protected setTableFormByRow(type: string, row: any): void; protected setTableDialogType(type: string): void; protected getTableForm(): any; protected setTableForm(data: any): void; toggleTableDialog(visible?: boolean): void; }