@fmdeui/fmui 1.0.75 → 1.0.77
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/component.mjs +3 -1
- package/es/components/fmcascader/index.d.ts +116 -0
- package/es/components/fmcascader/index.vue.d.ts +117 -0
- package/es/hooks/useInfo.d.ts +15 -0
- package/es/index.mjs +1 -1
- package/es/packages/components/fmcascader/index.mjs +6 -0
- package/es/packages/components/fmcascader/index.vue.mjs +5 -0
- package/es/packages/components/fmcascader/index.vue2.mjs +128 -0
- package/es/packages/hooks/index.mjs +1 -1
- package/es/packages/hooks/useInfo.mjs +13 -1
- package/index.js +204 -61
- package/index.min.js +6 -6
- package/index.min.mjs +7 -7
- package/index.mjs +202 -62
- package/lib/component.js +3 -1
- package/lib/components/fmcascader/index.d.ts +116 -0
- package/lib/components/fmcascader/index.vue.d.ts +117 -0
- package/lib/hooks/useInfo.d.ts +15 -0
- package/lib/index.js +23 -20
- package/lib/packages/components/fmcascader/index.js +8 -0
- package/lib/packages/components/fmcascader/index.vue.js +9 -0
- package/lib/packages/components/fmcascader/index.vue2.js +132 -0
- package/lib/packages/hooks/index.js +3 -0
- package/lib/packages/hooks/useInfo.js +15 -0
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/es/{index.css → component.css} +0 -0
- /package/lib/{index.css → version.css} +0 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
export declare const FmCascader: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
orgData: {
|
|
4
|
+
type: {
|
|
5
|
+
(arrayLength: number): any[];
|
|
6
|
+
(...items: any[]): any[];
|
|
7
|
+
new (arrayLength: number): any[];
|
|
8
|
+
new (...items: any[]): any[];
|
|
9
|
+
isArray(arg: any): arg is any[];
|
|
10
|
+
readonly prototype: any[];
|
|
11
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
12
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
13
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
14
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
15
|
+
of<T>(...items: T[]): T[];
|
|
16
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
17
|
+
};
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
cascaderProps: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: () => {
|
|
23
|
+
emitPath: boolean;
|
|
24
|
+
value: string;
|
|
25
|
+
label: string;
|
|
26
|
+
expandTrigger: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
placeholder: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
vId: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
vCmpId: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
vDetId: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
vGroupId: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
modelValue: {
|
|
50
|
+
type: PropType<any>;
|
|
51
|
+
};
|
|
52
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
53
|
+
change: (...args: any[]) => void;
|
|
54
|
+
"update:modelValue": (value: any) => void;
|
|
55
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
56
|
+
orgData: {
|
|
57
|
+
type: {
|
|
58
|
+
(arrayLength: number): any[];
|
|
59
|
+
(...items: any[]): any[];
|
|
60
|
+
new (arrayLength: number): any[];
|
|
61
|
+
new (...items: any[]): any[];
|
|
62
|
+
isArray(arg: any): arg is any[];
|
|
63
|
+
readonly prototype: any[];
|
|
64
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
65
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
66
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
67
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
68
|
+
of<T>(...items: T[]): T[];
|
|
69
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
70
|
+
};
|
|
71
|
+
default: () => never[];
|
|
72
|
+
};
|
|
73
|
+
cascaderProps: {
|
|
74
|
+
type: ObjectConstructor;
|
|
75
|
+
default: () => {
|
|
76
|
+
emitPath: boolean;
|
|
77
|
+
value: string;
|
|
78
|
+
label: string;
|
|
79
|
+
expandTrigger: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
placeholder: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
vId: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
vCmpId: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
vDetId: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
vGroupId: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
modelValue: {
|
|
103
|
+
type: PropType<any>;
|
|
104
|
+
};
|
|
105
|
+
}>> & Readonly<{
|
|
106
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
107
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
108
|
+
}>, {
|
|
109
|
+
placeholder: string;
|
|
110
|
+
orgData: any[];
|
|
111
|
+
cascaderProps: Record<string, any>;
|
|
112
|
+
vId: string;
|
|
113
|
+
vCmpId: string;
|
|
114
|
+
vDetId: string;
|
|
115
|
+
vGroupId: string;
|
|
116
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
orgData: {
|
|
4
|
+
type: {
|
|
5
|
+
(arrayLength: number): any[];
|
|
6
|
+
(...items: any[]): any[];
|
|
7
|
+
new (arrayLength: number): any[];
|
|
8
|
+
new (...items: any[]): any[];
|
|
9
|
+
isArray(arg: any): arg is any[];
|
|
10
|
+
readonly prototype: any[];
|
|
11
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
12
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
13
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
14
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
15
|
+
of<T>(...items: T[]): T[];
|
|
16
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
17
|
+
};
|
|
18
|
+
default: () => never[];
|
|
19
|
+
};
|
|
20
|
+
cascaderProps: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: () => {
|
|
23
|
+
emitPath: boolean;
|
|
24
|
+
value: string;
|
|
25
|
+
label: string;
|
|
26
|
+
expandTrigger: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
placeholder: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
vId: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
vCmpId: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
vDetId: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
vGroupId: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
modelValue: {
|
|
50
|
+
type: PropType<any>;
|
|
51
|
+
};
|
|
52
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
53
|
+
change: (...args: any[]) => void;
|
|
54
|
+
"update:modelValue": (value: any) => void;
|
|
55
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
56
|
+
orgData: {
|
|
57
|
+
type: {
|
|
58
|
+
(arrayLength: number): any[];
|
|
59
|
+
(...items: any[]): any[];
|
|
60
|
+
new (arrayLength: number): any[];
|
|
61
|
+
new (...items: any[]): any[];
|
|
62
|
+
isArray(arg: any): arg is any[];
|
|
63
|
+
readonly prototype: any[];
|
|
64
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
65
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
66
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
67
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
68
|
+
of<T>(...items: T[]): T[];
|
|
69
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
70
|
+
};
|
|
71
|
+
default: () => never[];
|
|
72
|
+
};
|
|
73
|
+
cascaderProps: {
|
|
74
|
+
type: ObjectConstructor;
|
|
75
|
+
default: () => {
|
|
76
|
+
emitPath: boolean;
|
|
77
|
+
value: string;
|
|
78
|
+
label: string;
|
|
79
|
+
expandTrigger: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
placeholder: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
vId: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
vCmpId: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
vDetId: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
vGroupId: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
modelValue: {
|
|
103
|
+
type: PropType<any>;
|
|
104
|
+
};
|
|
105
|
+
}>> & Readonly<{
|
|
106
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
107
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
108
|
+
}>, {
|
|
109
|
+
placeholder: string;
|
|
110
|
+
orgData: any[];
|
|
111
|
+
cascaderProps: Record<string, any>;
|
|
112
|
+
vId: string;
|
|
113
|
+
vCmpId: string;
|
|
114
|
+
vDetId: string;
|
|
115
|
+
vGroupId: string;
|
|
116
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
117
|
+
export default _default;
|
package/lib/hooks/useInfo.d.ts
CHANGED
|
@@ -67,6 +67,21 @@ export declare const orgId: () => number;
|
|
|
67
67
|
* @returns 获取组织名称
|
|
68
68
|
*/
|
|
69
69
|
export declare const orgName: () => string;
|
|
70
|
+
/**
|
|
71
|
+
* 公司id
|
|
72
|
+
* @returns 公司id
|
|
73
|
+
*/
|
|
74
|
+
export declare const cmpId: () => number;
|
|
75
|
+
/**
|
|
76
|
+
* 部门id
|
|
77
|
+
* @returns 部门id
|
|
78
|
+
*/
|
|
79
|
+
export declare const depId: () => number;
|
|
80
|
+
/**
|
|
81
|
+
* 组id
|
|
82
|
+
* @returns 组id
|
|
83
|
+
*/
|
|
84
|
+
export declare const groupId: () => number;
|
|
70
85
|
/**
|
|
71
86
|
* 获取职位id
|
|
72
87
|
* @returns 获取职位id.
|
package/lib/index.js
CHANGED
|
@@ -24,6 +24,7 @@ var authFunction = require('./packages/hooks/authFunction.js');
|
|
|
24
24
|
var base64Conver = require('./packages/utils/base64Conver.js');
|
|
25
25
|
var useLocale = require('./packages/hooks/useLocale.js');
|
|
26
26
|
var arrayOperation = require('./packages/utils/arrayOperation.js');
|
|
27
|
+
var useInfo = require('./packages/hooks/useInfo.js');
|
|
27
28
|
var idleTimeout = require('./packages/hooks/idleTimeout.js');
|
|
28
29
|
var download = require('./packages/utils/download.js');
|
|
29
30
|
var en = require('./packages/locale/lang/en.js');
|
|
@@ -35,7 +36,6 @@ var gpsConvertor = require('./packages/utils/gpsConvertor.js');
|
|
|
35
36
|
var uploadfileurl = require('./packages/utils/uploadfileurl.js');
|
|
36
37
|
var limitsFunction = require('./packages/hooks/limitsFunction.js');
|
|
37
38
|
var powerFunction = require('./packages/hooks/powerFunction.js');
|
|
38
|
-
var useInfo = require('./packages/hooks/useInfo.js');
|
|
39
39
|
var toolsValidate = require('./packages/utils/toolsValidate.js');
|
|
40
40
|
var sysInfo = require('./packages/hooks/sysInfo.js');
|
|
41
41
|
var inpinia = require('./packages/stores/inpinia.js');
|
|
@@ -122,6 +122,28 @@ exports.clone = arrayOperation.clone;
|
|
|
122
122
|
exports.isObjectValueEqual = arrayOperation.isObjectValueEqual;
|
|
123
123
|
exports.judgementSameArr = arrayOperation.judgementSameArr;
|
|
124
124
|
exports.removeDuplicate = arrayOperation.removeDuplicate;
|
|
125
|
+
exports.cmpId = useInfo.cmpId;
|
|
126
|
+
exports.depId = useInfo.depId;
|
|
127
|
+
exports.groupId = useInfo.groupId;
|
|
128
|
+
exports.hasPrivilege = useInfo.hasPrivilege;
|
|
129
|
+
exports.hasRoleCode = useInfo.hasRoleCode;
|
|
130
|
+
exports.isAdmin = useInfo.isAdmin;
|
|
131
|
+
exports.isMember = useInfo.isMember;
|
|
132
|
+
exports.isNormalUser = useInfo.isNormalUser;
|
|
133
|
+
exports.isSupperAdmin = useInfo.isSupperAdmin;
|
|
134
|
+
exports.isTenantAdmin = useInfo.isTenantAdmin;
|
|
135
|
+
exports.orgId = useInfo.orgId;
|
|
136
|
+
exports.orgName = useInfo.orgName;
|
|
137
|
+
exports.posId = useInfo.posId;
|
|
138
|
+
exports.posName = useInfo.posName;
|
|
139
|
+
exports.roles = useInfo.roles;
|
|
140
|
+
exports.tenantId = useInfo.tenantId;
|
|
141
|
+
exports.userAccount = useInfo.userAccount;
|
|
142
|
+
exports.userEmail = useInfo.userEmail;
|
|
143
|
+
exports.userFriendName = useInfo.userFriendName;
|
|
144
|
+
exports.userId = useInfo.userId;
|
|
145
|
+
exports.userName = useInfo.userName;
|
|
146
|
+
exports.userPhone = useInfo.userPhone;
|
|
125
147
|
exports.destroyIdleTimeout = idleTimeout.destroyIdleTimeout;
|
|
126
148
|
exports.initIdleTimeout = idleTimeout.initIdleTimeout;
|
|
127
149
|
exports.updateIdleTimeout = idleTimeout.updateIdleTimeout;
|
|
@@ -149,25 +171,6 @@ exports.showFileUrl = uploadfileurl.showFileUrl;
|
|
|
149
171
|
exports.getlimit = limitsFunction.getlimit;
|
|
150
172
|
exports.getpower = powerFunction.getpower;
|
|
151
173
|
exports.powerAuthDel = powerFunction.powerAuthDel;
|
|
152
|
-
exports.hasPrivilege = useInfo.hasPrivilege;
|
|
153
|
-
exports.hasRoleCode = useInfo.hasRoleCode;
|
|
154
|
-
exports.isAdmin = useInfo.isAdmin;
|
|
155
|
-
exports.isMember = useInfo.isMember;
|
|
156
|
-
exports.isNormalUser = useInfo.isNormalUser;
|
|
157
|
-
exports.isSupperAdmin = useInfo.isSupperAdmin;
|
|
158
|
-
exports.isTenantAdmin = useInfo.isTenantAdmin;
|
|
159
|
-
exports.orgId = useInfo.orgId;
|
|
160
|
-
exports.orgName = useInfo.orgName;
|
|
161
|
-
exports.posId = useInfo.posId;
|
|
162
|
-
exports.posName = useInfo.posName;
|
|
163
|
-
exports.roles = useInfo.roles;
|
|
164
|
-
exports.tenantId = useInfo.tenantId;
|
|
165
|
-
exports.userAccount = useInfo.userAccount;
|
|
166
|
-
exports.userEmail = useInfo.userEmail;
|
|
167
|
-
exports.userFriendName = useInfo.userFriendName;
|
|
168
|
-
exports.userId = useInfo.userId;
|
|
169
|
-
exports.userName = useInfo.userName;
|
|
170
|
-
exports.userPhone = useInfo.userPhone;
|
|
171
174
|
exports.judgementIdCard = toolsValidate.judgementIdCard;
|
|
172
175
|
exports.verifiyNumberInteger = toolsValidate.verifiyNumberInteger;
|
|
173
176
|
exports.verifyAccount = toolsValidate.verifyAccount;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index_vue_vue_type_script_name_FmCascader_setup_true_lang = require('./index.vue2.js');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
exports.default = index_vue_vue_type_script_name_FmCascader_setup_true_lang.default;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var vue = require('vue');
|
|
6
|
+
|
|
7
|
+
const _hoisted_1 = { key: 0 };
|
|
8
|
+
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
9
|
+
...{
|
|
10
|
+
name: "FmCascader"
|
|
11
|
+
},
|
|
12
|
+
__name: "index",
|
|
13
|
+
props: /* @__PURE__ */ vue.mergeModels({
|
|
14
|
+
orgData: {
|
|
15
|
+
type: Array,
|
|
16
|
+
default: () => []
|
|
17
|
+
},
|
|
18
|
+
cascaderProps: {
|
|
19
|
+
type: Object,
|
|
20
|
+
default: () => ({ emitPath: false, value: "id", label: "name", expandTrigger: "hover" })
|
|
21
|
+
},
|
|
22
|
+
placeholder: {
|
|
23
|
+
type: String,
|
|
24
|
+
default: "\u8BF7\u9009\u62E9\u7236\u8282"
|
|
25
|
+
},
|
|
26
|
+
vId: {
|
|
27
|
+
type: String,
|
|
28
|
+
default: "opOrgId"
|
|
29
|
+
},
|
|
30
|
+
vCmpId: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: "opCmpId"
|
|
33
|
+
},
|
|
34
|
+
vDetId: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: "opDetId"
|
|
37
|
+
},
|
|
38
|
+
vGroupId: {
|
|
39
|
+
type: String,
|
|
40
|
+
default: "opGroupId"
|
|
41
|
+
}
|
|
42
|
+
}, {
|
|
43
|
+
"modelValue": {},
|
|
44
|
+
"modelModifiers": {}
|
|
45
|
+
}),
|
|
46
|
+
emits: /* @__PURE__ */ vue.mergeModels(["change"], ["update:modelValue"]),
|
|
47
|
+
setup(__props, { emit: __emit }) {
|
|
48
|
+
const modeValue = vue.useModel(__props, "modelValue");
|
|
49
|
+
const emit = __emit;
|
|
50
|
+
const props = __props;
|
|
51
|
+
const handelchangeOrg = (val) => {
|
|
52
|
+
modeValue.value[props.vId] = val;
|
|
53
|
+
const node = findNode(val);
|
|
54
|
+
if (node) {
|
|
55
|
+
if (node.pid == 0) {
|
|
56
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vCmpId))
|
|
57
|
+
modeValue.value[props.vCmpId] = node.id;
|
|
58
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vDetId))
|
|
59
|
+
modeValue.value[props.vDetId] = 0;
|
|
60
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vGroupId))
|
|
61
|
+
modeValue.value[props.vGroupId] = 0;
|
|
62
|
+
} else if (node.level == 2) {
|
|
63
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vDetId))
|
|
64
|
+
modeValue.value[props.vDetId] = node.id;
|
|
65
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vCmpId))
|
|
66
|
+
modeValue.value[props.vCmpId] = node.pid;
|
|
67
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vGroupId))
|
|
68
|
+
modeValue.value[props.vGroupId] = 0;
|
|
69
|
+
} else if (node.level == 3) {
|
|
70
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vGroupId))
|
|
71
|
+
modeValue.value[props.vGroupId] = node.id;
|
|
72
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vDetId))
|
|
73
|
+
modeValue.value[props.vDetId] = node.pid;
|
|
74
|
+
let top = findNode(node.pid);
|
|
75
|
+
if (top) {
|
|
76
|
+
if (Object.prototype.hasOwnProperty.call(modeValue.value, props.vCmpId))
|
|
77
|
+
modeValue.value[props.vCmpId] = top.id;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
emit("change", node);
|
|
82
|
+
};
|
|
83
|
+
const findNode = (id) => {
|
|
84
|
+
const search = (nodes) => {
|
|
85
|
+
var _a;
|
|
86
|
+
for (const node of nodes) {
|
|
87
|
+
if (node.id === id) return node;
|
|
88
|
+
if ((_a = node.children) == null ? void 0 : _a.length) {
|
|
89
|
+
const found = search(node.children);
|
|
90
|
+
if (found) return found;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
return null;
|
|
94
|
+
};
|
|
95
|
+
return search(props.orgData || []);
|
|
96
|
+
};
|
|
97
|
+
return (_ctx, _cache) => {
|
|
98
|
+
const _component_el_cascader = vue.resolveComponent("el-cascader");
|
|
99
|
+
return vue.openBlock(), vue.createBlock(_component_el_cascader, {
|
|
100
|
+
options: props.orgData,
|
|
101
|
+
props: __props.cascaderProps,
|
|
102
|
+
placeholder: __props.placeholder,
|
|
103
|
+
filterable: "",
|
|
104
|
+
class: "w100",
|
|
105
|
+
modelValue: modeValue.value[__props.vId],
|
|
106
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modeValue.value[__props.vId] = $event),
|
|
107
|
+
onChange: handelchangeOrg
|
|
108
|
+
}, {
|
|
109
|
+
default: vue.withCtx(({ node, data }) => [
|
|
110
|
+
vue.createElementVNode(
|
|
111
|
+
"span",
|
|
112
|
+
null,
|
|
113
|
+
vue.toDisplayString(node.label),
|
|
114
|
+
1
|
|
115
|
+
/* TEXT */
|
|
116
|
+
),
|
|
117
|
+
!node.isLeaf ? (vue.openBlock(), vue.createElementBlock(
|
|
118
|
+
"span",
|
|
119
|
+
_hoisted_1,
|
|
120
|
+
" (" + vue.toDisplayString(data.children.length) + ") ",
|
|
121
|
+
1
|
|
122
|
+
/* TEXT */
|
|
123
|
+
)) : vue.createCommentVNode("v-if", true)
|
|
124
|
+
]),
|
|
125
|
+
_: 1
|
|
126
|
+
/* STABLE */
|
|
127
|
+
}, 8, ["options", "props", "placeholder", "modelValue"]);
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
exports.default = _sfc_main;
|
|
@@ -28,6 +28,9 @@ exports.powerAuthDel = powerFunction.powerAuthDel;
|
|
|
28
28
|
exports.useVxeTable = useVxeTableOptionsHook.useVxeTable;
|
|
29
29
|
exports.loadSysInfo = sysInfo.loadSysInfo;
|
|
30
30
|
exports.updateFavicon = sysInfo.updateFavicon;
|
|
31
|
+
exports.cmpId = useInfo.cmpId;
|
|
32
|
+
exports.depId = useInfo.depId;
|
|
33
|
+
exports.groupId = useInfo.groupId;
|
|
31
34
|
exports.hasPrivilege = useInfo.hasPrivilege;
|
|
32
35
|
exports.hasRoleCode = useInfo.hasRoleCode;
|
|
33
36
|
exports.isAdmin = useInfo.isAdmin;
|
|
@@ -61,6 +61,18 @@ const orgName = () => {
|
|
|
61
61
|
var _a;
|
|
62
62
|
return (_a = _getUserInfo()) == null ? void 0 : _a.orgName;
|
|
63
63
|
};
|
|
64
|
+
const cmpId = () => {
|
|
65
|
+
var _a;
|
|
66
|
+
return (_a = _getUserInfo()) == null ? void 0 : _a.cmpId;
|
|
67
|
+
};
|
|
68
|
+
const depId = () => {
|
|
69
|
+
var _a;
|
|
70
|
+
return (_a = _getUserInfo()) == null ? void 0 : _a.depId;
|
|
71
|
+
};
|
|
72
|
+
const groupId = () => {
|
|
73
|
+
var _a;
|
|
74
|
+
return (_a = _getUserInfo()) == null ? void 0 : _a.groupId;
|
|
75
|
+
};
|
|
64
76
|
const posId = () => {
|
|
65
77
|
var _a;
|
|
66
78
|
return (_a = _getUserInfo()) == null ? void 0 : _a.posId;
|
|
@@ -82,6 +94,9 @@ const hasPrivilege = (privilege) => {
|
|
|
82
94
|
return (_a = _getUserInfo()) == null ? void 0 : _a.authApiList.includes(privilege);
|
|
83
95
|
};
|
|
84
96
|
|
|
97
|
+
exports.cmpId = cmpId;
|
|
98
|
+
exports.depId = depId;
|
|
99
|
+
exports.groupId = groupId;
|
|
85
100
|
exports.hasPrivilege = hasPrivilege;
|
|
86
101
|
exports.hasRoleCode = hasRoleCode;
|
|
87
102
|
exports.isAdmin = isAdmin;
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.77 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.fmdeuiPlusLocaleEn=t())})(this,(function(){"use strict";var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};return e}));
|
package/locale/en.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.77 */var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};export{e as default};
|
package/locale/en.mjs
CHANGED
package/locale/zh-cn.js
CHANGED
package/locale/zh-cn.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.77 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.fmdeuiPlusLocaleZhCn=e())})(this,(function(){"use strict";var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};return u}));
|
package/locale/zh-cn.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.77 */var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};export{u as default};
|
package/locale/zh-cn.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|