纸板小程序:订单/送货单:列表与详情功能

This commit is contained in:
2026-06-11 11:26:40 +08:00
commit ef9ede1605
2317 changed files with 61642 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
import { SuperComponent } from '../common/src/index';
import type { TableRowData } from './type';
export default class Table extends SuperComponent {
externalClasses: string[];
options: {
multipleSlots: boolean;
};
properties: import("./type").TdBaseTableProps<TableRowData>;
data: {
prefix: string;
classPrefix: string;
tableClasses: string;
tableContentStyles: string;
tableElementStyles: string;
theadClasses: string;
tbodyClasses: string;
renderData: any[];
isEmpty: boolean;
colStyles: string[];
thClassNames: string[];
tdClassNames: string[][];
hasFixedColumn: boolean;
scrollableToLeft: boolean;
scrollableToRight: boolean;
contentClasses: string;
};
observers: {
'bordered, stripe, verticalAlign, loading, rowspanAndColspan, tableLayout, height, maxHeight, tableContentWidth, showHeader, columns, data, cellEmptyContent, rowKey, fixedRows'(this: any): void;
};
lifetimes: {
attached(this: any): void;
};
methods: {
updateTable(this: any): void;
measureAndFixStickyPositions(this: any, hasFixedHeader: boolean, fixedTopRows: number, fixedBottomRows: number, dataLen: number): void;
onRowClick(this: any, e: any): void;
onCellClick(this: any, e: any): void;
onScroll(this: any, e: any): void;
};
}