@fmdeui/fmui 1.0.95 → 1.0.96
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/components/fm-autocomplete/component/userSelectDialog.vue.d.ts +9 -0
- package/es/components/fmtree/index.d.ts +9 -0
- package/es/components/fmtree/index.vue.d.ts +15 -0
- package/es/packages/components/fm-autocomplete/component/userSelectDialog.vue2.mjs +16 -7
- package/es/packages/components/fm-autocomplete/index.vue2.mjs +7 -7
- package/es/packages/components/fmtree/index.vue2.mjs +8 -1
- package/index.js +32 -16
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +32 -16
- package/lib/components/fm-autocomplete/component/userSelectDialog.vue.d.ts +9 -0
- package/lib/components/fmtree/index.d.ts +9 -0
- package/lib/components/fmtree/index.vue.d.ts +15 -0
- package/lib/packages/components/fm-autocomplete/component/userSelectDialog.vue2.js +16 -7
- package/lib/packages/components/fm-autocomplete/index.vue2.js +7 -7
- package/lib/packages/components/fmtree/index.vue2.js +8 -1
- 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/{version.css → make-installer.css} +0 -0
- /package/lib/{version.css → component.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.96 */
|
|
2
2
|
import VxeUITable from 'vxe-table';
|
|
3
3
|
import VxeUIPluginRenderElement from '@vxe-ui/plugin-render-element';
|
|
4
4
|
import VxeUIPluginExportXLSX from '@vxe-ui/plugin-export-xlsx';
|
|
@@ -26967,11 +26967,15 @@ var _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
26967
26967
|
},
|
|
26968
26968
|
orgService: {
|
|
26969
26969
|
type: String,
|
|
26970
|
-
default: "
|
|
26970
|
+
default: "autoRes"
|
|
26971
26971
|
},
|
|
26972
26972
|
orgAction: {
|
|
26973
26973
|
type: String,
|
|
26974
|
-
default: "
|
|
26974
|
+
default: "userOrgList"
|
|
26975
|
+
},
|
|
26976
|
+
orgPost: {
|
|
26977
|
+
type: Boolean,
|
|
26978
|
+
default: true
|
|
26975
26979
|
},
|
|
26976
26980
|
orgparas: {
|
|
26977
26981
|
type: Object,
|
|
@@ -26980,11 +26984,11 @@ var _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
26980
26984
|
},
|
|
26981
26985
|
userService: {
|
|
26982
26986
|
type: String,
|
|
26983
|
-
default: "
|
|
26987
|
+
default: "autoRes"
|
|
26984
26988
|
},
|
|
26985
26989
|
userAction: {
|
|
26986
26990
|
type: String,
|
|
26987
|
-
default: "
|
|
26991
|
+
default: "UserTable"
|
|
26988
26992
|
},
|
|
26989
26993
|
userParams: {
|
|
26990
26994
|
type: Object,
|
|
@@ -27039,6 +27043,9 @@ var _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
27039
27043
|
if (!row || row.id == "") return;
|
|
27040
27044
|
emits("change", { id: row.id, name: row.realName, data: row });
|
|
27041
27045
|
}
|
|
27046
|
+
const handledbclick = (row) => {
|
|
27047
|
+
handleSelectUser(row);
|
|
27048
|
+
};
|
|
27042
27049
|
const handleSizeChange = (val) => {
|
|
27043
27050
|
state.queryParams.pageSize = val;
|
|
27044
27051
|
handleQuery();
|
|
@@ -27132,10 +27139,11 @@ var _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
27132
27139
|
ref: "orgTreeRef",
|
|
27133
27140
|
apiService: __props.orgService,
|
|
27134
27141
|
apiAction: __props.orgAction,
|
|
27135
|
-
|
|
27142
|
+
isPost: __props.orgPost,
|
|
27143
|
+
apiparas: __props.orgparas,
|
|
27136
27144
|
onNodeClick: handleNodeChange,
|
|
27137
27145
|
style: { "height": "calc(100% - 40px)", "overflow-y": "scroll", "overflow-x": "hidden" }
|
|
27138
|
-
}, null, 8, ["apiService", "apiAction", "
|
|
27146
|
+
}, null, 8, ["apiService", "apiAction", "isPost", "apiparas"])
|
|
27139
27147
|
]),
|
|
27140
27148
|
_: 1
|
|
27141
27149
|
/* STABLE */
|
|
@@ -27225,7 +27233,8 @@ var _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
27225
27233
|
createVNode(_component_el_table, {
|
|
27226
27234
|
ref: "refTable",
|
|
27227
27235
|
data: userList.value,
|
|
27228
|
-
style: { "height": "calc(70vh - 96px)" }
|
|
27236
|
+
style: { "height": "calc(70vh - 96px)" },
|
|
27237
|
+
onRowDblclick: handledbclick
|
|
27229
27238
|
}, {
|
|
27230
27239
|
default: withCtx(() => [
|
|
27231
27240
|
createVNode(_component_el_table_column, {
|
|
@@ -27343,14 +27352,14 @@ var _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
27343
27352
|
*/
|
|
27344
27353
|
atoService: {
|
|
27345
27354
|
type: String,
|
|
27346
|
-
default: "
|
|
27355
|
+
default: "autoRes"
|
|
27347
27356
|
},
|
|
27348
27357
|
/**
|
|
27349
27358
|
* ato service 下的方法
|
|
27350
27359
|
*/
|
|
27351
27360
|
atoAction: {
|
|
27352
27361
|
type: String,
|
|
27353
|
-
default: "
|
|
27362
|
+
default: "autoUser"
|
|
27354
27363
|
},
|
|
27355
27364
|
top: {
|
|
27356
27365
|
type: Number,
|
|
@@ -27358,7 +27367,7 @@ var _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
27358
27367
|
},
|
|
27359
27368
|
searchsize: {
|
|
27360
27369
|
type: Number,
|
|
27361
|
-
default:
|
|
27370
|
+
default: 22
|
|
27362
27371
|
},
|
|
27363
27372
|
/**
|
|
27364
27373
|
* 值的属性值
|
|
@@ -27408,11 +27417,11 @@ var _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
27408
27417
|
},
|
|
27409
27418
|
orgService: {
|
|
27410
27419
|
type: String,
|
|
27411
|
-
default: "
|
|
27420
|
+
default: "autoRes"
|
|
27412
27421
|
},
|
|
27413
27422
|
orgAction: {
|
|
27414
27423
|
type: String,
|
|
27415
|
-
default: "
|
|
27424
|
+
default: "userOrgList"
|
|
27416
27425
|
},
|
|
27417
27426
|
orgparas: {
|
|
27418
27427
|
type: Object,
|
|
@@ -27421,11 +27430,11 @@ var _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
27421
27430
|
},
|
|
27422
27431
|
userService: {
|
|
27423
27432
|
type: String,
|
|
27424
|
-
default: "
|
|
27433
|
+
default: "autoRes"
|
|
27425
27434
|
},
|
|
27426
27435
|
userAction: {
|
|
27427
27436
|
type: String,
|
|
27428
|
-
default: "
|
|
27437
|
+
default: "UserTable"
|
|
27429
27438
|
},
|
|
27430
27439
|
userParams: {
|
|
27431
27440
|
type: Object,
|
|
@@ -27584,6 +27593,13 @@ var _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
27584
27593
|
type: String,
|
|
27585
27594
|
default: ""
|
|
27586
27595
|
},
|
|
27596
|
+
/**
|
|
27597
|
+
* 是否POST请求
|
|
27598
|
+
*/
|
|
27599
|
+
isPost: {
|
|
27600
|
+
type: Boolean,
|
|
27601
|
+
default: false
|
|
27602
|
+
},
|
|
27587
27603
|
paras: {
|
|
27588
27604
|
type: Object,
|
|
27589
27605
|
default: null
|
|
@@ -27636,7 +27652,7 @@ var _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
27636
27652
|
const fetchTreeData = async (showLoading = true) => {
|
|
27637
27653
|
var _a, _b;
|
|
27638
27654
|
if (showLoading) state.loading = true;
|
|
27639
|
-
var res = await useBaseApi(props.apiService).get(props.paras, props.apiAction);
|
|
27655
|
+
var res = props.isPost ? await useBaseApi(props.apiService).post(props.paras, props.apiAction) : await useBaseApi(props.apiService).get(props.paras, props.apiAction);
|
|
27640
27656
|
state.folderData = (_a = res.data.result) != null ? _a : [];
|
|
27641
27657
|
if (showLoading) state.loading = false;
|
|
27642
27658
|
const rtreeData = (_b = res.data.result) != null ? _b : [];
|
|
@@ -20,6 +20,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
|
+
orgPost: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
23
27
|
orgparas: {
|
|
24
28
|
type: ObjectConstructor;
|
|
25
29
|
default: () => void;
|
|
@@ -60,6 +64,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
60
64
|
type: StringConstructor;
|
|
61
65
|
default: string;
|
|
62
66
|
};
|
|
67
|
+
orgPost: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
63
71
|
orgparas: {
|
|
64
72
|
type: ObjectConstructor;
|
|
65
73
|
default: () => void;
|
|
@@ -85,6 +93,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
85
93
|
visible: boolean;
|
|
86
94
|
orgService: string;
|
|
87
95
|
orgAction: string;
|
|
96
|
+
orgPost: boolean;
|
|
88
97
|
orgparas: Record<string, any>;
|
|
89
98
|
userService: string;
|
|
90
99
|
userAction: string;
|
|
@@ -13,6 +13,10 @@ export declare const FmTree: DefineComponent<ExtractPropTypes<{
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
|
+
isPost: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
16
20
|
paras: {
|
|
17
21
|
type: ObjectConstructor;
|
|
18
22
|
default: null;
|
|
@@ -81,6 +85,10 @@ export declare const FmTree: DefineComponent<ExtractPropTypes<{
|
|
|
81
85
|
type: StringConstructor;
|
|
82
86
|
default: string;
|
|
83
87
|
};
|
|
88
|
+
isPost: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
84
92
|
paras: {
|
|
85
93
|
type: ObjectConstructor;
|
|
86
94
|
default: null;
|
|
@@ -129,6 +137,7 @@ export declare const FmTree: DefineComponent<ExtractPropTypes<{
|
|
|
129
137
|
placeholder: string;
|
|
130
138
|
apiService: string;
|
|
131
139
|
apiAction: string;
|
|
140
|
+
isPost: boolean;
|
|
132
141
|
paras: Record<string, any>;
|
|
133
142
|
nodeKey: string;
|
|
134
143
|
defaultProps: Record<string, any>;
|
|
@@ -19,6 +19,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* 是否POST请求
|
|
24
|
+
*/
|
|
25
|
+
isPost: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
22
29
|
paras: {
|
|
23
30
|
type: ObjectConstructor;
|
|
24
31
|
default: null;
|
|
@@ -93,6 +100,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
93
100
|
type: StringConstructor;
|
|
94
101
|
default: string;
|
|
95
102
|
};
|
|
103
|
+
/**
|
|
104
|
+
* 是否POST请求
|
|
105
|
+
*/
|
|
106
|
+
isPost: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: boolean;
|
|
109
|
+
};
|
|
96
110
|
paras: {
|
|
97
111
|
type: ObjectConstructor;
|
|
98
112
|
default: null;
|
|
@@ -141,6 +155,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
141
155
|
placeholder: string;
|
|
142
156
|
apiService: string;
|
|
143
157
|
apiAction: string;
|
|
158
|
+
isPost: boolean;
|
|
144
159
|
paras: Record<string, any>;
|
|
145
160
|
nodeKey: string;
|
|
146
161
|
defaultProps: Record<string, any>;
|
|
@@ -28,11 +28,15 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
28
28
|
},
|
|
29
29
|
orgService: {
|
|
30
30
|
type: String,
|
|
31
|
-
default: "
|
|
31
|
+
default: "autoRes"
|
|
32
32
|
},
|
|
33
33
|
orgAction: {
|
|
34
34
|
type: String,
|
|
35
|
-
default: "
|
|
35
|
+
default: "userOrgList"
|
|
36
|
+
},
|
|
37
|
+
orgPost: {
|
|
38
|
+
type: Boolean,
|
|
39
|
+
default: true
|
|
36
40
|
},
|
|
37
41
|
orgparas: {
|
|
38
42
|
type: Object,
|
|
@@ -41,11 +45,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
41
45
|
},
|
|
42
46
|
userService: {
|
|
43
47
|
type: String,
|
|
44
|
-
default: "
|
|
48
|
+
default: "autoRes"
|
|
45
49
|
},
|
|
46
50
|
userAction: {
|
|
47
51
|
type: String,
|
|
48
|
-
default: "
|
|
52
|
+
default: "UserTable"
|
|
49
53
|
},
|
|
50
54
|
userParams: {
|
|
51
55
|
type: Object,
|
|
@@ -100,6 +104,9 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
100
104
|
if (!row || row.id == "") return;
|
|
101
105
|
emits("change", { id: row.id, name: row.realName, data: row });
|
|
102
106
|
}
|
|
107
|
+
const handledbclick = (row) => {
|
|
108
|
+
handleSelectUser(row);
|
|
109
|
+
};
|
|
103
110
|
const handleSizeChange = (val) => {
|
|
104
111
|
state.queryParams.pageSize = val;
|
|
105
112
|
handleQuery();
|
|
@@ -193,10 +200,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
193
200
|
ref: "orgTreeRef",
|
|
194
201
|
apiService: __props.orgService,
|
|
195
202
|
apiAction: __props.orgAction,
|
|
196
|
-
|
|
203
|
+
isPost: __props.orgPost,
|
|
204
|
+
apiparas: __props.orgparas,
|
|
197
205
|
onNodeClick: handleNodeChange,
|
|
198
206
|
style: { "height": "calc(100% - 40px)", "overflow-y": "scroll", "overflow-x": "hidden" }
|
|
199
|
-
}, null, 8, ["apiService", "apiAction", "
|
|
207
|
+
}, null, 8, ["apiService", "apiAction", "isPost", "apiparas"])
|
|
200
208
|
]),
|
|
201
209
|
_: 1
|
|
202
210
|
/* STABLE */
|
|
@@ -286,7 +294,8 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
286
294
|
vue.createVNode(_component_el_table, {
|
|
287
295
|
ref: "refTable",
|
|
288
296
|
data: userList.value,
|
|
289
|
-
style: { "height": "calc(70vh - 96px)" }
|
|
297
|
+
style: { "height": "calc(70vh - 96px)" },
|
|
298
|
+
onRowDblclick: handledbclick
|
|
290
299
|
}, {
|
|
291
300
|
default: vue.withCtx(() => [
|
|
292
301
|
vue.createVNode(_component_el_table_column, {
|
|
@@ -25,14 +25,14 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
25
25
|
*/
|
|
26
26
|
atoService: {
|
|
27
27
|
type: String,
|
|
28
|
-
default: "
|
|
28
|
+
default: "autoRes"
|
|
29
29
|
},
|
|
30
30
|
/**
|
|
31
31
|
* ato service 下的方法
|
|
32
32
|
*/
|
|
33
33
|
atoAction: {
|
|
34
34
|
type: String,
|
|
35
|
-
default: "
|
|
35
|
+
default: "autoUser"
|
|
36
36
|
},
|
|
37
37
|
top: {
|
|
38
38
|
type: Number,
|
|
@@ -40,7 +40,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
40
40
|
},
|
|
41
41
|
searchsize: {
|
|
42
42
|
type: Number,
|
|
43
|
-
default:
|
|
43
|
+
default: 22
|
|
44
44
|
},
|
|
45
45
|
/**
|
|
46
46
|
* 值的属性值
|
|
@@ -90,11 +90,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
90
90
|
},
|
|
91
91
|
orgService: {
|
|
92
92
|
type: String,
|
|
93
|
-
default: "
|
|
93
|
+
default: "autoRes"
|
|
94
94
|
},
|
|
95
95
|
orgAction: {
|
|
96
96
|
type: String,
|
|
97
|
-
default: "
|
|
97
|
+
default: "userOrgList"
|
|
98
98
|
},
|
|
99
99
|
orgparas: {
|
|
100
100
|
type: Object,
|
|
@@ -104,11 +104,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
104
104
|
},
|
|
105
105
|
userService: {
|
|
106
106
|
type: String,
|
|
107
|
-
default: "
|
|
107
|
+
default: "autoRes"
|
|
108
108
|
},
|
|
109
109
|
userAction: {
|
|
110
110
|
type: String,
|
|
111
|
-
default: "
|
|
111
|
+
default: "UserTable"
|
|
112
112
|
},
|
|
113
113
|
userParams: {
|
|
114
114
|
type: Object,
|
|
@@ -33,6 +33,13 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
33
33
|
type: String,
|
|
34
34
|
default: ""
|
|
35
35
|
},
|
|
36
|
+
/**
|
|
37
|
+
* 是否POST请求
|
|
38
|
+
*/
|
|
39
|
+
isPost: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
default: false
|
|
42
|
+
},
|
|
36
43
|
paras: {
|
|
37
44
|
type: Object,
|
|
38
45
|
default: null
|
|
@@ -85,7 +92,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
85
92
|
const fetchTreeData = async (showLoading = true) => {
|
|
86
93
|
var _a, _b;
|
|
87
94
|
if (showLoading) state.loading = true;
|
|
88
|
-
var res = await index.useBaseApi(props.apiService).get(props.paras, props.apiAction);
|
|
95
|
+
var res = props.isPost ? await index.useBaseApi(props.apiService).post(props.paras, props.apiAction) : await index.useBaseApi(props.apiService).get(props.paras, props.apiAction);
|
|
89
96
|
state.folderData = (_a = res.data.result) != null ? _a : [];
|
|
90
97
|
if (showLoading) state.loading = false;
|
|
91
98
|
const rtreeData = (_b = res.data.result) != null ? _b : [];
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.96 */(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.96 */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.96 */(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.96 */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
|