@baosight/erm 1.0.52 → 1.0.54

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.
@@ -0,0 +1,25 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ data: {
3
+ type: StringConstructor;
4
+ };
5
+ readOnly: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
10
+ [key: string]: any;
11
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "btnClick")[], "input" | "btnClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
+ data: {
13
+ type: StringConstructor;
14
+ };
15
+ readOnly: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ }>> & {
20
+ onInput?: (...args: any[]) => any;
21
+ onBtnClick?: (...args: any[]) => any;
22
+ }, {
23
+ readOnly: boolean;
24
+ }, {}>;
25
+ export default _default;
@@ -7,6 +7,24 @@ declare const _default: import("vue").DefineComponent<{
7
7
  recId: {
8
8
  type: StringConstructor;
9
9
  require: boolean;
10
+ default: string;
11
+ };
12
+ /**
13
+ * servePath-服务地址
14
+ * @type {String}
15
+ */
16
+ servePath: {
17
+ type: StringConstructor;
18
+ require: boolean;
19
+ default: string;
20
+ };
21
+ /**
22
+ * rootDirectory-根目录
23
+ * @type {String}
24
+ */
25
+ rootDirectory: {
26
+ type: StringConstructor;
27
+ require: boolean;
10
28
  };
11
29
  }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
12
30
  [key: string]: any;
@@ -18,6 +36,27 @@ declare const _default: import("vue").DefineComponent<{
18
36
  recId: {
19
37
  type: StringConstructor;
20
38
  require: boolean;
39
+ default: string;
40
+ };
41
+ /**
42
+ * servePath-服务地址
43
+ * @type {String}
44
+ */
45
+ servePath: {
46
+ type: StringConstructor;
47
+ require: boolean;
48
+ default: string;
49
+ };
50
+ /**
51
+ * rootDirectory-根目录
52
+ * @type {String}
53
+ */
54
+ rootDirectory: {
55
+ type: StringConstructor;
56
+ require: boolean;
21
57
  };
22
- }>>, {}, {}>;
58
+ }>>, {
59
+ recId: string;
60
+ servePath: string;
61
+ }, {}>;
23
62
  export default _default;
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<{
41
41
  };
42
42
  }, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
43
43
  [key: string]: any;
44
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange")[], "dataChange" | "cellValueChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("dataChange" | "cellValueChange" | "btnClick")[], "dataChange" | "cellValueChange" | "btnClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
45
45
  /**
46
46
  * 最大高度,默认auto
47
47
  * @type {String}
@@ -85,6 +85,7 @@ declare const _default: import("vue").DefineComponent<{
85
85
  }>> & {
86
86
  onDataChange?: (...args: any[]) => any;
87
87
  onCellValueChange?: (...args: any[]) => any;
88
+ onBtnClick?: (...args: any[]) => any;
88
89
  }, {
89
90
  mainTitle: string;
90
91
  maxHeight: string;
@@ -1,6 +1,7 @@
1
1
  import 'vant/lib/index.css';
2
2
  import 'vant/lib/checkbox';
3
3
  import 'vant/lib/checkbox-group';
4
+ declare type SelectMode = 'singleRow' | 'multiRow';
4
5
  declare const _default: import("vue").DefineComponent<{
5
6
  /**
6
7
  * 传入表数据
@@ -97,14 +98,22 @@ declare const _default: import("vue").DefineComponent<{
97
98
  default: string[];
98
99
  };
99
100
  /**
100
- * 多选模式
101
+ * 开启多选
101
102
  * @type {Boolean}
102
103
  */
103
- mutiSelect: {
104
+ showSelect: {
104
105
  type: BooleanConstructor;
105
106
  default: boolean;
106
107
  };
107
108
  /**
109
+ * 多选模式
110
+ * @type {Boolean}
111
+ */
112
+ selectMode: {
113
+ type: () => SelectMode;
114
+ default: string;
115
+ };
116
+ /**
108
117
  * 是否禁用下拉刷新
109
118
  * @type {Boolean}
110
119
  */
@@ -234,14 +243,22 @@ declare const _default: import("vue").DefineComponent<{
234
243
  default: string[];
235
244
  };
236
245
  /**
237
- * 多选模式
246
+ * 开启多选
238
247
  * @type {Boolean}
239
248
  */
240
- mutiSelect: {
249
+ showSelect: {
241
250
  type: BooleanConstructor;
242
251
  default: boolean;
243
252
  };
244
253
  /**
254
+ * 多选模式
255
+ * @type {Boolean}
256
+ */
257
+ selectMode: {
258
+ type: () => SelectMode;
259
+ default: string;
260
+ };
261
+ /**
245
262
  * 是否禁用下拉刷新
246
263
  * @type {Boolean}
247
264
  */
@@ -290,7 +307,8 @@ declare const _default: import("vue").DefineComponent<{
290
307
  rightIconUrl: string;
291
308
  leftIconSize: unknown[];
292
309
  rightIconSize: unknown[];
293
- mutiSelect: boolean;
310
+ showSelect: boolean;
311
+ selectMode: SelectMode;
294
312
  pullDisabled: boolean;
295
313
  pullDownDisabled: boolean;
296
314
  leftSwiperSelect: boolean;