zhihao-ui 1.2.11 → 1.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/es/{BaseInfo-Dv-eon6t.js → BaseInfo-7jZU0u6I.js} +1 -1
  2. package/dist/es/{Button-DBbUF88w.js → Button-B9P_SsZw.js} +2 -2
  3. package/dist/es/{DatePicker-CWQoV03Q.js → DatePicker-Cc2HzfbO.js} +22 -21
  4. package/dist/es/{DetailHeader-C_mAB8-2.js → DetailHeader-DWSW65H4.js} +3 -3
  5. package/dist/es/{DetailSubTitle-DD7Yllhf.js → DetailSubTitle-BcmMobfK.js} +2 -2
  6. package/dist/es/{Dialog-DyDSVm-6.js → Dialog-CPGMb7bN.js} +7 -6
  7. package/dist/es/{DiyDataTable-CpkKeWkY.js → DiyDataTable-Dg2-p40F.js} +44 -40
  8. package/dist/es/{EditInfoPair-D0b5jY5Y.js → EditInfoPair-DK6juMvt.js} +3 -3
  9. package/dist/es/{FileWrapper-CMSYWmEz.js → FileWrapper-DJK4gH30.js} +4 -4
  10. package/dist/es/{Grid-B5O9dZNI.js → Grid-ChfF9Fgz.js} +1 -1
  11. package/dist/es/{InfoPair-Do3sSVw-.js → InfoPair-Ba3m95Ys.js} +3 -3
  12. package/dist/es/{Input-DVpd0Yte.js → Input-nPdfvjre.js} +3 -3
  13. package/dist/es/{Loading-DwtfOhMD.js → Loading-5GrMZQAf.js} +2 -2
  14. package/dist/es/{Map-B8_d8utt.js → Map-Q8kvdbDZ.js} +827 -712
  15. package/dist/es/{MessageBox-BowhqMYW.js → MessageBox-SFDDgn41.js} +2 -2
  16. package/dist/es/{MoneyInput-CaTrJLi1.js → MoneyInput-DfIiKsPe.js} +5 -5
  17. package/dist/es/{PageHeadPanel-_mKu2rMQ.js → PageHeadPanel-BnA69dS-.js} +2 -2
  18. package/dist/es/Table-R_03lfSM.js +1111 -0
  19. package/dist/es/{ToolTips-BTCP0N--.js → ToolTips-BHQpNHPT.js} +3 -3
  20. package/dist/es/index.js +50 -47
  21. package/dist/es/{utils-DZ8-2Fg2.js → utils-BbabHGt0.js} +1 -1
  22. package/dist/es/{vendor-BY-fHNA3.js → vendor-CUDSGmu_.js} +14743 -12789
  23. package/dist/index.css +1 -1
  24. package/dist/types/components/DiyDataTable/DiyDataTable.vue.d.ts +12 -1
  25. package/dist/types/components/DiyDataTable/index.d.ts +9 -1
  26. package/dist/types/components/DiyDataTable/type.d.ts +2 -0
  27. package/dist/types/components/Map/Map.vue.d.ts +7 -3
  28. package/dist/types/components/Map/components/toolPanel.vue.d.ts +16 -1
  29. package/dist/types/components/Map/index.d.ts +30 -12
  30. package/dist/types/components/Map/render/canvasRender/renderTrackStyle.d.ts +1 -0
  31. package/dist/types/components/Map/render/drawPolygon.d.ts +2 -2
  32. package/dist/types/components/Map/render/renderTrack.d.ts +2 -2
  33. package/dist/types/components/Table/components/ColSetting.vue.d.ts +41 -0
  34. package/dist/types/components/Table/components/SearchForm.vue.d.ts +57 -0
  35. package/dist/types/components/Table/components/SearchFormItem.vue.d.ts +32 -0
  36. package/dist/types/components/Table/components/TableColumn.vue.d.ts +17 -0
  37. package/dist/types/components/Table/components/tablePagination.vue.d.ts +21 -0
  38. package/dist/types/components/Table/hooks/useSelection.d.ts +17 -0
  39. package/dist/types/components/Table/hooks/useTable.d.ts +50 -0
  40. package/dist/types/components/Table/index.d.ts +2946 -0
  41. package/dist/types/components/Table/index.vue.d.ts +984 -0
  42. package/dist/types/components/Table/types.d.ts +78 -0
  43. package/dist/types/components/Table/utils.d.ts +55 -0
  44. package/dist/types/components/const.d.ts +4 -0
  45. package/dist/types/components/index.d.ts +1 -0
  46. package/dist/umd/index.css +1 -1
  47. package/dist/umd/index.umd.cjs +33 -28
  48. package/package.json +1 -1
@@ -1,6 +1,10 @@
1
1
  import { DiyDataTableColumnItem, DiyDataType, DIY_DATA_TYPE } from './type';
2
2
 
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ declare function __VLS_template(): Partial<Record<string, (_: {
4
+ row: any;
5
+ $index: any;
6
+ }) => any>>;
7
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
8
  rawData: {
5
9
  required: true;
6
10
  type: import('vue').PropType<DiyDataType[]>;
@@ -41,6 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
41
45
  parser?: ((value: string) => string) | undefined;
42
46
  varidate?: ((value: string | number | undefined) => true | string) | undefined;
43
47
  fixed?: ("left" | "right") | undefined;
48
+ slot?: string | undefined;
44
49
  }[];
45
50
  } | undefined>;
46
51
  /** 更新列配置数据 */
@@ -67,4 +72,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
67
72
  maxRowLength: number;
68
73
  maxColLength: number;
69
74
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
75
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
70
76
  export default _default;
77
+ type __VLS_WithTemplateSlots<T, S> = T & {
78
+ new (): {
79
+ $slots: S;
80
+ };
81
+ };
@@ -38,6 +38,7 @@ export declare const ZhDiyDataTable: {
38
38
  parser?: ((value: string) => string) | undefined;
39
39
  varidate?: ((value: string | number | undefined) => true | string) | undefined;
40
40
  fixed?: ("left" | "right") | undefined;
41
+ slot?: string | undefined;
41
42
  }[];
42
43
  } | undefined>;
43
44
  updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
@@ -91,6 +92,7 @@ export declare const ZhDiyDataTable: {
91
92
  parser?: ((value: string) => string) | undefined;
92
93
  varidate?: ((value: string | number | undefined) => true | string) | undefined;
93
94
  fixed?: ("left" | "right") | undefined;
95
+ slot?: string | undefined;
94
96
  }[];
95
97
  } | undefined>;
96
98
  updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
@@ -141,6 +143,7 @@ export declare const ZhDiyDataTable: {
141
143
  parser?: ((value: string) => string) | undefined;
142
144
  varidate?: ((value: string | number | undefined) => true | string) | undefined;
143
145
  fixed?: ("left" | "right") | undefined;
146
+ slot?: string | undefined;
144
147
  }[];
145
148
  } | undefined>;
146
149
  updateColumn: (index: number, column: import('./type').DiyDataTableColumnItem) => void;
@@ -148,5 +151,10 @@ export declare const ZhDiyDataTable: {
148
151
  isEdit: boolean;
149
152
  maxRowLength: number;
150
153
  maxColLength: number;
151
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
154
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
155
+ $slots: Partial<Record<string, (_: {
156
+ row: any;
157
+ $index: any;
158
+ }) => any>>;
159
+ }) & import('vue').Plugin;
152
160
  export * from './type';
@@ -45,4 +45,6 @@ export type DiyDataTableColumnItem = {
45
45
  varidate?: (value: string | number | undefined) => true | string;
46
46
  /** 固定列位置 */
47
47
  fixed?: 'left' | 'right';
48
+ /** 列插槽 */
49
+ slot?: string;
48
50
  };
@@ -6,17 +6,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
6
6
  zoom: number | null;
7
7
  center: [number, number] | null;
8
8
  vehicleMode: "truck" | "ship";
9
+ viewMode: "PC" | "WxMiniprogram" | "APP";
9
10
  }>>, {
10
11
  mapInstance: Ref<Map | undefined, Map | undefined>;
11
12
  initMap: () => void;
12
13
  renderTrucksMarker: (list: import('./interface').SinoiovVehicleInfo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | undefined;
13
14
  renderShip: (list: ShipInfoVo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | import('ol/layer').WebGLPoints<import('ol/source').Vector<import('ol').Feature<import('ol/geom').Geometry>>> | undefined;
14
- renderTrack: (id: string, list: any[], color: string, unit: string, vehicleType?: "ship" | "truck") => void;
15
+ renderTrack: (mmsi: string, list: any[], color: string) => void;
15
16
  findTruck: (vehicleInfo?: import('./interface').VehicleInfo) => Promise<void>;
16
17
  removeTruckIcon: () => void;
17
18
  clearAllTruck: () => void;
18
19
  closeTrack: () => void;
19
20
  closeTruckTrack: () => void;
21
+ resetTrackView: (id?: number | string) => void;
22
+ playTrack: (index: number | string, speed: number) => void;
20
23
  clearSelectFeature: () => void;
21
24
  findShip: (id: string, shipData?: ShipInfoVo, select?: boolean) => any;
22
25
  focusShip: (id: string, shipData?: ShipInfoVo) => void;
@@ -30,9 +33,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
30
33
  renderMarker: (lngLat: string, translate?: boolean, showText?: boolean) => void;
31
34
  setMarkerPosition: (val: string) => void;
32
35
  drawPolygonTool: {
33
- addInteraction: (callback: Function) => void;
36
+ addInteraction: (callback?: Function) => void;
34
37
  removeInteraction: () => void;
35
- initFeature: (callback: Function) => void;
38
+ initFeature: (callback?: Function) => void;
36
39
  reset: () => void;
37
40
  };
38
41
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -42,6 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
42
45
  zoom: number | null;
43
46
  center: [number, number] | null;
44
47
  vehicleMode: "truck" | "ship";
48
+ viewMode: "PC" | "WxMiniprogram" | "APP";
45
49
  }>>> & Readonly<{
46
50
  onZoomChanged?: ((...args: any[]) => any) | undefined;
47
51
  onExtentChanged?: ((...args: any[]) => any) | undefined;
@@ -1,14 +1,24 @@
1
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
1
+ declare function __VLS_template(): {
2
+ toolPanel?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
5
  vehicleMode: "truck" | "ship";
6
+ viewMode: "PC" | "WxMiniprogram" | "APP";
7
+ disableGreenDot: boolean;
8
+ showTrackLayer: boolean;
3
9
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
4
10
  switchGreenDot: (...args: any[]) => void;
5
11
  switchMapTile: (...args: any[]) => void;
6
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
13
  vehicleMode: "truck" | "ship";
14
+ viewMode: "PC" | "WxMiniprogram" | "APP";
15
+ disableGreenDot: boolean;
16
+ showTrackLayer: boolean;
8
17
  }>>> & Readonly<{
9
18
  onSwitchGreenDot?: ((...args: any[]) => any) | undefined;
10
19
  onSwitchMapTile?: ((...args: any[]) => any) | undefined;
11
20
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
21
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
12
22
  export default _default;
13
23
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
24
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -19,3 +29,8 @@ type __VLS_TypePropsToRuntimeProps<T> = {
19
29
  required: true;
20
30
  };
21
31
  };
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -9,7 +9,11 @@ export declare const ZhMap: {
9
9
  required: true;
10
10
  };
11
11
  vehicleMode: {
12
- type: import('vue').PropType<"truck" | "ship">;
12
+ type: import('vue').PropType<"ship" | "truck">;
13
+ required: true;
14
+ };
15
+ viewMode: {
16
+ type: import('vue').PropType<"PC" | "WxMiniprogram" | "APP">;
13
17
  required: true;
14
18
  };
15
19
  }>> & Readonly<{
@@ -20,12 +24,14 @@ export declare const ZhMap: {
20
24
  initMap: () => void;
21
25
  renderTrucksMarker: (list: import('./interface').SinoiovVehicleInfo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | undefined;
22
26
  renderShip: (list: import('./interface').ShipInfoVo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | import('ol/layer').WebGLPoints<import('ol/source').Vector<import('ol').Feature<import('ol/geom').Geometry>>> | undefined;
23
- renderTrack: (id: string, list: any[], color: string, unit: string, vehicleType?: "ship" | "truck") => void;
27
+ renderTrack: (mmsi: string, list: any[], color: string) => void;
24
28
  findTruck: (vehicleInfo?: import('./interface').VehicleInfo) => Promise<void>;
25
29
  removeTruckIcon: () => void;
26
30
  clearAllTruck: () => void;
27
31
  closeTrack: () => void;
28
32
  closeTruckTrack: () => void;
33
+ resetTrackView: (id?: number | string) => void;
34
+ playTrack: (index: number | string, speed: number) => void;
29
35
  clearSelectFeature: () => void;
30
36
  findShip: (id: string, shipData?: import('./interface').ShipInfoVo, select?: boolean) => any;
31
37
  focusShip: (id: string, shipData?: import('./interface').ShipInfoVo) => void;
@@ -39,9 +45,9 @@ export declare const ZhMap: {
39
45
  renderMarker: (lngLat: string, translate?: boolean, showText?: boolean) => void;
40
46
  setMarkerPosition: (val: string) => void;
41
47
  drawPolygonTool: {
42
- addInteraction: (callback: Function) => void;
48
+ addInteraction: (callback?: Function) => void;
43
49
  removeInteraction: () => void;
44
- initFeature: (callback: Function) => void;
50
+ initFeature: (callback?: Function) => void;
45
51
  reset: () => void;
46
52
  };
47
53
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -64,7 +70,11 @@ export declare const ZhMap: {
64
70
  required: true;
65
71
  };
66
72
  vehicleMode: {
67
- type: import('vue').PropType<"truck" | "ship">;
73
+ type: import('vue').PropType<"ship" | "truck">;
74
+ required: true;
75
+ };
76
+ viewMode: {
77
+ type: import('vue').PropType<"PC" | "WxMiniprogram" | "APP">;
68
78
  required: true;
69
79
  };
70
80
  }>> & Readonly<{
@@ -75,12 +85,14 @@ export declare const ZhMap: {
75
85
  initMap: () => void;
76
86
  renderTrucksMarker: (list: import('./interface').SinoiovVehicleInfo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | undefined;
77
87
  renderShip: (list: import('./interface').ShipInfoVo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | import('ol/layer').WebGLPoints<import('ol/source').Vector<import('ol').Feature<import('ol/geom').Geometry>>> | undefined;
78
- renderTrack: (id: string, list: any[], color: string, unit: string, vehicleType?: "ship" | "truck") => void;
88
+ renderTrack: (mmsi: string, list: any[], color: string) => void;
79
89
  findTruck: (vehicleInfo?: import('./interface').VehicleInfo) => Promise<void>;
80
90
  removeTruckIcon: () => void;
81
91
  clearAllTruck: () => void;
82
92
  closeTrack: () => void;
83
93
  closeTruckTrack: () => void;
94
+ resetTrackView: (id?: number | string) => void;
95
+ playTrack: (index: number | string, speed: number) => void;
84
96
  clearSelectFeature: () => void;
85
97
  findShip: (id: string, shipData?: import('./interface').ShipInfoVo, select?: boolean) => any;
86
98
  focusShip: (id: string, shipData?: import('./interface').ShipInfoVo) => void;
@@ -94,9 +106,9 @@ export declare const ZhMap: {
94
106
  renderMarker: (lngLat: string, translate?: boolean, showText?: boolean) => void;
95
107
  setMarkerPosition: (val: string) => void;
96
108
  drawPolygonTool: {
97
- addInteraction: (callback: Function) => void;
109
+ addInteraction: (callback?: Function) => void;
98
110
  removeInteraction: () => void;
99
- initFeature: (callback: Function) => void;
111
+ initFeature: (callback?: Function) => void;
100
112
  reset: () => void;
101
113
  };
102
114
  }, {}, {}, {}, {}>;
@@ -113,7 +125,11 @@ export declare const ZhMap: {
113
125
  required: true;
114
126
  };
115
127
  vehicleMode: {
116
- type: import('vue').PropType<"truck" | "ship">;
128
+ type: import('vue').PropType<"ship" | "truck">;
129
+ required: true;
130
+ };
131
+ viewMode: {
132
+ type: import('vue').PropType<"PC" | "WxMiniprogram" | "APP">;
117
133
  required: true;
118
134
  };
119
135
  }>> & Readonly<{
@@ -124,12 +140,14 @@ export declare const ZhMap: {
124
140
  initMap: () => void;
125
141
  renderTrucksMarker: (list: import('./interface').SinoiovVehicleInfo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | undefined;
126
142
  renderShip: (list: import('./interface').ShipInfoVo[]) => import('ol/layer').Vector<import('ol/source').Vector<any>, any> | import('ol/layer').WebGLPoints<import('ol/source').Vector<import('ol').Feature<import('ol/geom').Geometry>>> | undefined;
127
- renderTrack: (id: string, list: any[], color: string, unit: string, vehicleType?: "ship" | "truck") => void;
143
+ renderTrack: (mmsi: string, list: any[], color: string) => void;
128
144
  findTruck: (vehicleInfo?: import('./interface').VehicleInfo) => Promise<void>;
129
145
  removeTruckIcon: () => void;
130
146
  clearAllTruck: () => void;
131
147
  closeTrack: () => void;
132
148
  closeTruckTrack: () => void;
149
+ resetTrackView: (id?: number | string) => void;
150
+ playTrack: (index: number | string, speed: number) => void;
133
151
  clearSelectFeature: () => void;
134
152
  findShip: (id: string, shipData?: import('./interface').ShipInfoVo, select?: boolean) => any;
135
153
  focusShip: (id: string, shipData?: import('./interface').ShipInfoVo) => void;
@@ -143,9 +161,9 @@ export declare const ZhMap: {
143
161
  renderMarker: (lngLat: string, translate?: boolean, showText?: boolean) => void;
144
162
  setMarkerPosition: (val: string) => void;
145
163
  drawPolygonTool: {
146
- addInteraction: (callback: Function) => void;
164
+ addInteraction: (callback?: Function) => void;
147
165
  removeInteraction: () => void;
148
- initFeature: (callback: Function) => void;
166
+ initFeature: (callback?: Function) => void;
149
167
  reset: () => void;
150
168
  };
151
169
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -2,4 +2,5 @@ import { Style } from 'ol/style';
2
2
  import { ShipTrack } from '../../interface';
3
3
 
4
4
  export declare const renderTrackLine: (data: any, id: string, trackColor: string) => void;
5
+ export declare const handlePlay: (index: number) => void;
5
6
  export declare const setTrackLabelStyle: (featureData: ShipTrack, trackColor: string) => Style;
@@ -1,9 +1,9 @@
1
- declare function addInteraction(callback: Function): void;
1
+ declare function addInteraction(callback?: Function): void;
2
2
  declare function removeInteraction(): void;
3
3
  export declare const drawPolygonTool: {
4
4
  addInteraction: typeof addInteraction;
5
5
  removeInteraction: typeof removeInteraction;
6
- initFeature: (callback: Function) => void;
6
+ initFeature: (callback?: Function) => void;
7
7
  reset: () => void;
8
8
  };
9
9
  export {};
@@ -5,9 +5,9 @@ import { TrackExtend } from '../interface';
5
5
  * 轨迹绘制
6
6
  */
7
7
  export declare const showTracks: Ref<TrackExtend[]>;
8
- export declare const renderTrack: (id: string, list: any[], color: string, unit: string, vehicleType?: "ship" | "truck") => void;
8
+ export declare const renderTrack: (id: string, list: any[], color: string, unit: number, vehicleType?: "ship" | "truck") => void;
9
9
  export declare const removeAllTrackLayer: () => void;
10
10
  export declare const playTrack: (index: number | string, speed: number) => void;
11
11
  export declare const removerLayer: (index: number) => void;
12
- export declare const resetTrackView: (id: number | string) => void;
12
+ export declare const resetTrackView: (id?: number | string) => void;
13
13
  export declare const trackLayerVisible: (flag: boolean) => void;
@@ -0,0 +1,41 @@
1
+ import { ColumnProps } from '../types';
2
+
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ originTableColumns?: ColumnProps[];
5
+ }>, {
6
+ originTableColumns: () => never[];
7
+ }>>, {
8
+ openColSetting: (list: ColumnProps[]) => void;
9
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
+ submit: (...args: any[]) => void;
11
+ close: (...args: any[]) => void;
12
+ dragSort: (...args: any[]) => void;
13
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
14
+ originTableColumns?: ColumnProps[];
15
+ }>, {
16
+ originTableColumns: () => never[];
17
+ }>>> & Readonly<{
18
+ onSubmit?: ((...args: any[]) => any) | undefined;
19
+ onClose?: ((...args: any[]) => any) | undefined;
20
+ onDragSort?: ((...args: any[]) => any) | undefined;
21
+ }>, {
22
+ originTableColumns: ColumnProps[];
23
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ type __VLS_WithDefaults<P, D> = {
35
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
36
+ default: D[K];
37
+ }> : P[K];
38
+ };
39
+ type __VLS_Prettify<T> = {
40
+ [K in keyof T]: T[K];
41
+ } & {};
@@ -0,0 +1,57 @@
1
+ import { ColumnProps } from '../types';
2
+
3
+ interface ProTableProps {
4
+ columns?: ColumnProps[];
5
+ searchParam?: {
6
+ [key: string]: any;
7
+ };
8
+ search: (...params: any[]) => void;
9
+ reset: (params: any) => void;
10
+ isShowResetBtn?: boolean;
11
+ isShowSearchBtn?: boolean;
12
+ }
13
+ declare function __VLS_template(): {
14
+ default?(_: {}): any;
15
+ };
16
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
17
+ columns: () => never[];
18
+ searchParam: () => {};
19
+ isShowResetBtn: boolean;
20
+ isShowSearchBtn: boolean;
21
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
22
+ columns: () => never[];
23
+ searchParam: () => {};
24
+ isShowResetBtn: boolean;
25
+ isShowSearchBtn: boolean;
26
+ }>>> & Readonly<{}>, {
27
+ columns: ColumnProps[];
28
+ searchParam: {
29
+ [key: string]: any;
30
+ };
31
+ isShowSearchBtn: boolean;
32
+ isShowResetBtn: boolean;
33
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
34
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
35
+ export default _default;
36
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
37
+ type __VLS_TypePropsToRuntimeProps<T> = {
38
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
39
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
40
+ } : {
41
+ type: import('vue').PropType<T[K]>;
42
+ required: true;
43
+ };
44
+ };
45
+ type __VLS_WithDefaults<P, D> = {
46
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
47
+ default: D[K];
48
+ }> : P[K];
49
+ };
50
+ type __VLS_Prettify<T> = {
51
+ [K in keyof T]: T[K];
52
+ } & {};
53
+ type __VLS_WithTemplateSlots<T, S> = T & {
54
+ new (): {
55
+ $slots: S;
56
+ };
57
+ };
@@ -0,0 +1,32 @@
1
+ import { ColumnProps } from '../types';
2
+
3
+ interface SearchFormItem {
4
+ column: ColumnProps;
5
+ searchParam: {
6
+ [key: string]: any;
7
+ };
8
+ }
9
+ declare function __VLS_template(): {
10
+ default?(_: {}): any;
11
+ };
12
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ search: (...args: any[]) => void;
14
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>> & Readonly<{
15
+ onSearch?: ((...args: any[]) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
18
+ export default _default;
19
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
20
+ type __VLS_TypePropsToRuntimeProps<T> = {
21
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
22
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
23
+ } : {
24
+ type: import('vue').PropType<T[K]>;
25
+ required: true;
26
+ };
27
+ };
28
+ type __VLS_WithTemplateSlots<T, S> = T & {
29
+ new (): {
30
+ $slots: S;
31
+ };
32
+ };
@@ -0,0 +1,17 @@
1
+ import { ColumnProps } from '../types';
2
+
3
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
+ column: ColumnProps;
5
+ }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
6
+ column: ColumnProps;
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
@@ -0,0 +1,21 @@
1
+ interface Pageable {
2
+ page: number;
3
+ size: number;
4
+ total: number;
5
+ }
6
+ interface PaginationProps {
7
+ pageable: Pageable;
8
+ handleSizeChange: (size: number) => void;
9
+ handleCurrentChange: (currentPage: number) => void;
10
+ }
11
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PaginationProps>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PaginationProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ export default _default;
13
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
+ type __VLS_TypePropsToRuntimeProps<T> = {
15
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
16
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
+ } : {
18
+ type: import('vue').PropType<T[K]>;
19
+ required: true;
20
+ };
21
+ };
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @description 表格多选数据操作
3
+ * @param {String} rowKey 当表格可以多选时,所指定的 id
4
+ * @param selectChangeCallback
5
+ * */
6
+ export declare const useSelection: (rowKey?: string, selectChangeCallback?: (data: any) => any) => {
7
+ isSelected: import('vue').Ref<boolean, boolean>;
8
+ selectedList: import('vue').Ref<{
9
+ [key: string]: any;
10
+ }[], {
11
+ [key: string]: any;
12
+ }[]>;
13
+ selectedListIds: import('vue').ComputedRef<any[]>;
14
+ selectionChange: (rowArr: {
15
+ [key: string]: any;
16
+ }[]) => void;
17
+ };
@@ -0,0 +1,50 @@
1
+ /**
2
+ * @description table 页面操作方法封装
3
+ * @param {Function} api 获取表格数据 api 方法 (必传)
4
+ * @param {Object} initParam 获取数据初始化参数 (非必传,默认为{})
5
+ * @param {Boolean} isPageable 是否有分页 (非必传,默认为true)
6
+ * @param {Function} dataCallBack 对后台返回的数据进行处理的方法 (非必传)
7
+ * @param requestError
8
+ * @param handleParam
9
+ * @param requestError
10
+ * @param handleParam
11
+ * */
12
+ export declare const useTable: (api?: (params: any) => Promise<any>, initParam?: object, isPageable?: boolean, dataCallBack?: (data: any) => any, requestError?: (error: any) => void, handleParam?: (data: any) => any) => {
13
+ getTableList: () => Promise<void>;
14
+ search: () => void;
15
+ reset: () => void;
16
+ handleSizeChange: (val: number) => void;
17
+ handleCurrentChange: (val: number) => void;
18
+ updatedTotalParam: () => void;
19
+ tableData: import('vue').Ref<any[], any[]>;
20
+ pageable: import('vue').Ref<{
21
+ page: number;
22
+ size: number;
23
+ total: number;
24
+ }, {
25
+ page: number;
26
+ size: number;
27
+ total: number;
28
+ }>;
29
+ searchParam: import('vue').Ref<{
30
+ [key: string]: any;
31
+ }, {
32
+ [key: string]: any;
33
+ }>;
34
+ searchInitParam: import('vue').Ref<{
35
+ [key: string]: any;
36
+ }, {
37
+ [key: string]: any;
38
+ }>;
39
+ totalParam: import('vue').Ref<{
40
+ [key: string]: any;
41
+ }, {
42
+ [key: string]: any;
43
+ }>;
44
+ icon?: import('vue').Ref<{
45
+ [key: string]: any;
46
+ } | undefined, {
47
+ [key: string]: any;
48
+ } | undefined> | undefined;
49
+ loading: import('vue').Ref<boolean, boolean>;
50
+ };