yahee-components 0.0.110 → 0.0.111
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.
- package/es/operation-log/operation-log-form.vue2.js +11 -11
- package/package.json +1 -1
- package/types/src/installs.d.ts +4 -4
- package/types/src/operation-log/index.d.ts +4 -4
- package/types/src/operation-log/operation-log-form.vue.d.ts +3 -3
- package/types/src/operation-log/operation-log.vue.d.ts +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as f, reactive as d, ref as E, onMounted as D } from "vue";
|
|
2
|
-
import { ElOption as _, ElSelect as
|
|
2
|
+
import { ElOption as _, ElSelect as b, ElInput as h, ElFormItem as w, ElButton as S, ElDatePicker as y, ElForm as N } from "element-plus";
|
|
3
3
|
import "element-plus/theme-chalk/src/base.scss";
|
|
4
4
|
import "element-plus/theme-chalk/src/form.scss";
|
|
5
5
|
import "element-plus/theme-chalk/src/date-picker.scss";
|
|
@@ -12,14 +12,14 @@ import "element-plus/theme-chalk/src/tag.scss";
|
|
|
12
12
|
import "element-plus/theme-chalk/src/option.scss";
|
|
13
13
|
import "element-plus/theme-chalk/src/option-group.scss";
|
|
14
14
|
import "element-plus/theme-chalk/src/select.scss";
|
|
15
|
-
import { Search as
|
|
16
|
-
import { getGlobalNotesUsers as
|
|
15
|
+
import { Search as T } from "@element-plus/icons-vue";
|
|
16
|
+
import { getGlobalNotesUsers as v } from "../packages/components/api/log/index.js";
|
|
17
17
|
import { M2 as r } from "../utils/translate.js";
|
|
18
18
|
const A = /* @__PURE__ */ f({
|
|
19
19
|
__name: "operation-log-form",
|
|
20
20
|
props: {
|
|
21
21
|
businessKey: {
|
|
22
|
-
type: String,
|
|
22
|
+
type: [String, Number],
|
|
23
23
|
default: ""
|
|
24
24
|
},
|
|
25
25
|
businessName: {
|
|
@@ -70,7 +70,7 @@ const A = /* @__PURE__ */ f({
|
|
|
70
70
|
t.append(
|
|
71
71
|
"filter",
|
|
72
72
|
JSON.stringify({ BusinessKey: n.businessKey, BusinessName: n.businessName })
|
|
73
|
-
),
|
|
73
|
+
), v(t).then((e) => {
|
|
74
74
|
s.value = e || [];
|
|
75
75
|
});
|
|
76
76
|
}, i = l, g = (t) => {
|
|
@@ -80,21 +80,21 @@ const A = /* @__PURE__ */ f({
|
|
|
80
80
|
a();
|
|
81
81
|
});
|
|
82
82
|
const m = { props: n, form: o, dataOptions: s, shortcuts: c, getData: a, emit: i, searchChange: g, get ElForm() {
|
|
83
|
-
return
|
|
83
|
+
return N;
|
|
84
84
|
}, get ElDatePicker() {
|
|
85
85
|
return y;
|
|
86
86
|
}, get ElButton() {
|
|
87
|
-
return b;
|
|
88
|
-
}, get ElFormItem() {
|
|
89
87
|
return S;
|
|
90
|
-
}, get
|
|
88
|
+
}, get ElFormItem() {
|
|
91
89
|
return w;
|
|
92
|
-
}, get
|
|
90
|
+
}, get ElInput() {
|
|
93
91
|
return h;
|
|
92
|
+
}, get ElSelect() {
|
|
93
|
+
return b;
|
|
94
94
|
}, get ElOption() {
|
|
95
95
|
return _;
|
|
96
96
|
}, get Search() {
|
|
97
|
-
return
|
|
97
|
+
return T;
|
|
98
98
|
}, get M2() {
|
|
99
99
|
return r;
|
|
100
100
|
} };
|
package/package.json
CHANGED
package/types/src/installs.d.ts
CHANGED
|
@@ -269,7 +269,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<ExtractPropTypes<{
|
|
|
269
269
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
270
270
|
logForm: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
271
271
|
businessKey: {
|
|
272
|
-
type: StringConstructor;
|
|
272
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
273
273
|
default: string;
|
|
274
274
|
};
|
|
275
275
|
businessName: {
|
|
@@ -281,7 +281,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<ExtractPropTypes<{
|
|
|
281
281
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
282
282
|
filterChange: (...args: any[]) => void;
|
|
283
283
|
}, PublicProps, {
|
|
284
|
-
businessKey: string;
|
|
284
|
+
businessKey: string | number;
|
|
285
285
|
businessName: string | number;
|
|
286
286
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
287
287
|
P: {};
|
|
@@ -292,7 +292,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<ExtractPropTypes<{
|
|
|
292
292
|
Defaults: {};
|
|
293
293
|
}, Readonly< ExtractPropTypes<{
|
|
294
294
|
businessKey: {
|
|
295
|
-
type: StringConstructor;
|
|
295
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
296
296
|
default: string;
|
|
297
297
|
};
|
|
298
298
|
businessName: {
|
|
@@ -302,7 +302,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<ExtractPropTypes<{
|
|
|
302
302
|
}>> & Readonly<{
|
|
303
303
|
onFilterChange?: (...args: any[]) => any;
|
|
304
304
|
}>, {}, {}, {}, {}, {
|
|
305
|
-
businessKey: string;
|
|
305
|
+
businessKey: string | number;
|
|
306
306
|
businessName: string | number;
|
|
307
307
|
}>;
|
|
308
308
|
infiniteList: {
|
|
@@ -11,7 +11,7 @@ export declare const YaheeOperationLog: SFCWithInstall<DefineComponent<Operation
|
|
|
11
11
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
12
12
|
logForm: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
13
13
|
businessKey: {
|
|
14
|
-
type: StringConstructor;
|
|
14
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
15
15
|
default: string;
|
|
16
16
|
};
|
|
17
17
|
businessName: {
|
|
@@ -23,7 +23,7 @@ export declare const YaheeOperationLog: SFCWithInstall<DefineComponent<Operation
|
|
|
23
23
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
24
24
|
filterChange: (...args: any[]) => void;
|
|
25
25
|
}, PublicProps, {
|
|
26
|
-
businessKey: string;
|
|
26
|
+
businessKey: string | number;
|
|
27
27
|
businessName: string | number;
|
|
28
28
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
29
29
|
P: {};
|
|
@@ -34,7 +34,7 @@ export declare const YaheeOperationLog: SFCWithInstall<DefineComponent<Operation
|
|
|
34
34
|
Defaults: {};
|
|
35
35
|
}, Readonly< ExtractPropTypes<{
|
|
36
36
|
businessKey: {
|
|
37
|
-
type: StringConstructor;
|
|
37
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
40
|
businessName: {
|
|
@@ -44,7 +44,7 @@ export declare const YaheeOperationLog: SFCWithInstall<DefineComponent<Operation
|
|
|
44
44
|
}>> & Readonly<{
|
|
45
45
|
onFilterChange?: (...args: any[]) => any;
|
|
46
46
|
}>, {}, {}, {}, {}, {
|
|
47
|
-
businessKey: string;
|
|
47
|
+
businessKey: string | number;
|
|
48
48
|
businessName: string | number;
|
|
49
49
|
}>;
|
|
50
50
|
infiniteList: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
2
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
3
|
businessKey: {
|
|
4
|
-
type: StringConstructor;
|
|
4
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
7
|
businessName: {
|
|
@@ -12,7 +12,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12
12
|
filterChange: (...args: any[]) => void;
|
|
13
13
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
14
14
|
businessKey: {
|
|
15
|
-
type: StringConstructor;
|
|
15
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
18
|
businessName: {
|
|
@@ -22,7 +22,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22
22
|
}>> & Readonly<{
|
|
23
23
|
onFilterChange?: (...args: any[]) => any;
|
|
24
24
|
}>, {
|
|
25
|
-
businessKey: string;
|
|
25
|
+
businessKey: string | number;
|
|
26
26
|
businessName: string | number;
|
|
27
27
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
28
28
|
export default _default;
|
|
@@ -10,7 +10,7 @@ declare const _default: DefineComponent<OperationLogProps, {}, {}, {}, {}, Compo
|
|
|
10
10
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
11
11
|
logForm: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
12
12
|
businessKey: {
|
|
13
|
-
type: StringConstructor;
|
|
13
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
16
|
businessName: {
|
|
@@ -22,7 +22,7 @@ declare const _default: DefineComponent<OperationLogProps, {}, {}, {}, {}, Compo
|
|
|
22
22
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
23
23
|
filterChange: (...args: any[]) => void;
|
|
24
24
|
}, PublicProps, {
|
|
25
|
-
businessKey: string;
|
|
25
|
+
businessKey: string | number;
|
|
26
26
|
businessName: string | number;
|
|
27
27
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
28
28
|
P: {};
|
|
@@ -33,7 +33,7 @@ declare const _default: DefineComponent<OperationLogProps, {}, {}, {}, {}, Compo
|
|
|
33
33
|
Defaults: {};
|
|
34
34
|
}, Readonly< ExtractPropTypes<{
|
|
35
35
|
businessKey: {
|
|
36
|
-
type: StringConstructor;
|
|
36
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
37
37
|
default: string;
|
|
38
38
|
};
|
|
39
39
|
businessName: {
|
|
@@ -43,7 +43,7 @@ declare const _default: DefineComponent<OperationLogProps, {}, {}, {}, {}, Compo
|
|
|
43
43
|
}>> & Readonly<{
|
|
44
44
|
onFilterChange?: (...args: any[]) => any;
|
|
45
45
|
}>, {}, {}, {}, {}, {
|
|
46
|
-
businessKey: string;
|
|
46
|
+
businessKey: string | number;
|
|
47
47
|
businessName: string | number;
|
|
48
48
|
}>;
|
|
49
49
|
infiniteList: {
|