1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| import { CSSProperties, PropType } from 'vue'
| import { TablePropsItemType } from './BaseTable.d'
|
| export const tableProps = {
| columns: {
| type: Array as PropType<TablePropsItemType['columns']>,
| default: () => [],
| },
| dataSource: {
| type: Array as PropType<TablePropsItemType['dataSource']>,
| default: () => [],
| },
| LanguageScopeKey: {
| type: String as PropType<TablePropsItemType['LanguageScopeKey']>,
| default: '',
| },
| id: {
| type: String as PropType<TablePropsItemType['id']>,
| default: 'id',
| },
| isSeq: {
| type: Boolean as PropType<TablePropsItemType['isSeq']>,
| default: true,
| },
| isHidePagination: {
| type: Boolean as PropType<TablePropsItemType['isHidePagination']>,
| default: false,
| },
| cellStyle: {
| type: [Function, Object] as [
| PropType<TablePropsItemType['cellStyle']>,
| any
| ],
| },
| hightLightRow: {
| type: String,
| default: '',
| },
| style: {
| type: Object,
| default: () => {},
| },
| columnResizable: {
| type: Boolean as PropType<TablePropsItemType['columnResizable']>,
| default: false,
| },
| /**
| * 宽度
| */
| width: {
| type: Number,
| },
| isVScroll: {
| type: Boolean as PropType<TablePropsItemType['isVScroll']>,
| default: false,
| },
| } as const
|
| export const tableEmits = {
| onColumnResize: Function,
| onRowClick: Function,
| }
|
|